Message 1 of 14
iLogic and Custom iProperties
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Inventor 2014 I'm just starting to learn iLogic so I'm going to ask some stupid questions. We need to add some custom iproperties to our files. Some files already has these iproperties and they're filled in; others do not. What I want is to have iLogic enter the missing iproperties and ignore the ones that are there and filled in. What I've tried so far: Dim oCustProp As Inventor.Property iProperties.Value("Custom","Critical") = False if iProperties.Value("Custom","Critical") = True Then Else iProperties.Value("Custom","Critical") = False End if The problem is that every time I save it changes the Critical iproperty back to False. What am I doing wrong? I've attached the reset of my codes to this threads. These work.