Autodesk Inventor Customization
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
iLogic - Update ipropertie s
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
I have an iLogic form which define iproperties or parameters values.The form is ok, when I modify values in the form, the iproperties or parameters are modified in the part.
I need to use these values in another rule, to define the folder name where I want to save the part. So I have created a rule which display the form, then I use the properties or parameters defined in the form. The problem is the iproperties/parameters are updated only at the end of the rule, not when I close the form.
How can I use in the rule the values defined in the form ?
Solved! Go to Solution.
Re: iLogic - Update ipropertie s
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Any idea ?
Hi Tonellal There is a Snippet that allows you to Updat...
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi Tonellal
There is a Snippet that allows you to Update the document Immediately at a given point in the code.
Look through the Snippets in the left column when editing an iLogic rule (I believe its under documents) and run your mouse over to highlight what each one does.
I believe this should fix your issue
Regards
Mitch
Re: Hi Tonellal There is a Snippet that allows you to Updat...
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
OK, it seems to be solved by using iProperties.Value("Project", "Part Number")=Parameter("Length") instead of iProperties.Value("Project", "Part Number")=Length.
