• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Inventor

    Reply
    Valued Contributor
    dclunie
    Posts: 58
    Registered: ‎03-26-2008
    Accepted Solution

    Ilogic Rule to change custom iproperty

    280 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

     

    1. parameter 1 = Frontplanangle
    2. 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
     
    Please use plain text.
    *Expert Elite*
    Curtis_Waguespack
    Posts: 1,933
    Registered: ‎03-08-2006

    Re: Ilogic Rule to change custom iproperty

    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



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

    Please use plain text.