Message 1 of 2
iLogic write iproperties only for active model state
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm using ilogic to write some physical properties of a part to the iproperties description field.
I do this by using
iProperties.value("Project", "Description") = <partlength>
however i noticed that when i have multiple model states and length of part in the active model state changes, the iproperties for the other inactive model states get changed too.
I'm looking for something like this:
iProperties.Value(ThisDoc.ActiveModelState,"Project", "Description") = <partlength>
however this doesnt work for model states.
how do i write iproperties to only the current active model state?