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

    Autodesk Inventor

    Reply
    Valued Contributor
    Posts: 60
    Registered: ‎09-30-2005
    Accepted Solution

    Delete userparameter with ilogic

    520 Views, 1 Replies
    01-09-2012 02:22 AM

    Dear,

     

    I know how to add user parameters with ilogic, but i would like to dete them as well. I've tried to use the delete option as mentioned in the API help but I cann't get it working in ilogic.

     

    any one a suggestion, this is how i create a parameter:


    Format:HTML Format
    Version:1.0
    StartHTML: 165
    EndHTML: 3855
    StartFragment: 314
    EndFragment: 3823
    StartSelection: 314
    EndSelection: 314

    DimoDocAsPartDocument=ThisDoc.Document'of : oDoc as AssemblyDocumment = ThisDoc.Document

    'nummerieke parameter
    Try
    prop=oDoc.ComponentDefinition.Parameters.UserParameters?.item("nummer")
    Catch
    newprop=oDoc.ComponentDefinition.Parameters.UserParameters?.AddByExpression("nummer", "100", "mm")
    EndTry

    greetings, 

     

    theo

    Please use plain text.
    Valued Contributor
    Posts: 60
    Registered: ‎09-30-2005

    Re: Delete userparameter with ilogic

    01-09-2012 02:30 AM in reply to: theo.bot

    Found the solution:

     

    Format:HTML Format
    Version:1.0
    StartHTML: 165
    EndHTML: 1602
    StartFragment: 314
    EndFragment: 1570
    StartSelection: 314
    EndSelection: 314

    DimparamAsParameter 
    param=oDoc.ComponentDefinition.Parameters.Item("G_L")
    param.Delete

     

    Maybe it's intresting for other users!

     

    Kind regards,

     

    Theo

    Please use plain text.