Luke George 2 Posted February 22, 2019 Share Posted February 22, 2019 Is there any way to make a property that depends on another property set by the user For example, if the user sets property1 to 5, I want property2 to be 6 (i.e., property1 +1). Link to comment Share on other sites More sharing options...
Gaia Paolini Posted February 22, 2019 Share Posted February 22, 2019 Hi yes you can associate an IronPython script to property1. If you edit the document properties you will find a script tab where you can assign a script to run every time a property is changed. Document.Properties['property2']=Document.Properties['property1']+1 Gaia Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now