03-18-2015
05:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-18-2015
05:24 AM
I need a way to fire rule "Length" in part "Angle" when there is a parameter change in my assembly. How can I do this?
Thanks,
Aaron Schlaack
---------------------------------------------------------------------------------
Autodesk Inventor 2018
Dell Windows 8.1 64 bit Intel(R) Xeon(R) @ 3.50GHz 32GB Ram
Aaron Schlaack
---------------------------------------------------------------------------------
Autodesk Inventor 2018
Dell Windows 8.1 64 bit Intel(R) Xeon(R) @ 3.50GHz 32GB Ram
Solved! Go to Solution.
03-18-2015
01:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-18-2015
01:28 PM
You have two options depending on how your rules are written in the part.
In your assembly you can have a rule that responds to a parameter change. That rule can then change the part parameter or run a rule. If the rule in the part is an internal rule written using the parameter name then it will automatically respond to a parameter change in the part. If the rule must be explicitly run then that can be done to.
From the assembly:
Run rule in subcomponent:
iLogicVb.RunRule("Angle", "Length")
Modify a parameter
Parameter("Angle", "length") = 2.0 in
03-20-2015
04:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-20-2015
04:42 AM
Thank you, I used the first rule and it worked great!
Thanks,
Aaron Schlaack
---------------------------------------------------------------------------------
Autodesk Inventor 2018
Dell Windows 8.1 64 bit Intel(R) Xeon(R) @ 3.50GHz 32GB Ram
Aaron Schlaack
---------------------------------------------------------------------------------
Autodesk Inventor 2018
Dell Windows 8.1 64 bit Intel(R) Xeon(R) @ 3.50GHz 32GB Ram