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

    Autodesk Inventor Customization

    Reply
    Valued Contributor
    obourne
    Posts: 121
    Registered: ‎03-02-2011
    Accepted Solution

    Using iLogic Form I need to Acces the Material Property

    108 Views, 1 Replies
    01-16-2013 01:16 PM

    I've created a form that I want to use to modify my part's material property. I don't see a way to get to that from an ilogic form.

     

    What I have done instead is create a parameter that imported my material library. When I change the prameter a rule then changes the material property. I'd rather access the material property directly from my form rather than having to go through a paramter.

     

    Does anyone know how to do this?

    Please use plain text.
    Contributor
    Posts: 14
    Registered: ‎02-25-2009

    Re: Using iLogic Form I need to Acces the Material Property

    01-18-2013 09:24 AM in reply to: obourne

    I think this is what you want..I have a form that creates a length of tubing based on OD, Wall thickness, and Material. For material, here's what I did. It updates my part with whatever material is selected.

     

    iLogicForm.Show("Name of Form")
    MultiValue.List("Material") = iProperties.Materials
    iProperties.Material=Material

     

    Matt

     

     

    Please use plain text.