02-20-2024
11:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
02-20-2024
11:23 AM
If you are willing to use the Inventor API (in an Ilogic rule) then you could try something like this:
Dim doc As PartDocument = ThisApplication.ActiveDocument
Dim def As PartComponentDefinition = doc.ComponentDefinition
Dim parameters = def.Parameters.Cast(Of Parameter)
Dim exsits = parameters.Any(Function(p) p.Name.Equals("test1"))
If exsits Then
MsgBox("Parameter exist")
End If
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com