11-08-2015
01:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
11-08-2015
01:12 PM
You may consider the following simple iLogic rule.
It reads the custom property "AAA" value and then assigns it to the user-defined text parameter “Parameter_AAA”:
' iLogic rule 'UpdateUserParameter'
' reads custom property "AAA" value Dim PropValue As String = iProperties.Value("Custom", "AAA") 'updates the user-defined text parameter Parameter_AAA = PropValue 'this message is for debugging only MsgBox("Parameter was updated: " & Parameter_AAA)
Using iLogic event you may handle iProperty changes automatically:
Vladimir Ananyev
Developer Technical Services
Autodesk Developer Network