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
Delete userparame ter with ilogic
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
Solved! Go to Solution.
Re: Delete userparame ter with ilogic
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
