Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

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.

EESignature


Blog: hjalte.nl - github.com