Autodesk Inventor
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Ilogic Rule to change custom iproperty
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
335 Views, 1 Replies
12-11-2012 12:54 PM
Hi
I am after help on writing part of rule for ilogic,i need the rule to fill out a custom property with information for me
I have a part that has 2 parameters
- parameter 1 = Frontplanangle
- parameter 2 = Endplanangle
Custom property
iProperties.Value("Custom", "DESC2") =
I need the rule to examine both parameters and if both angles = 0 then DESC2 = ""
And if any parameter >0 then
iProperties.Value("Custom", "DESC2") = bevel/
Regards
Dave
Solved! Go to Solution.
Re: Ilogic Rule to change custom iproperty
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-11-2012 01:17 PM in reply to:
dclunie
Hi dclunie,
Something along these lines should work:
If Frontplanangle = 0 And Endplanangle = 0 Then
iProperties.Value("Custom", "DESC2") = ""
ElseIf Frontplanangle > 0 Or Endplanangle > 0
iProperties.Value("Custom", "DESC2") ="bevel/"
End If
MessageBox.Show("DESC2 = " & iProperties.Value("Custom", "DESC2"), "iLogic") I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
