Message 1 of 7

Not applicable
02-03-2018
03:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hi
I want to use ilogic to check if a user parameter exists, if it does exist then the user parameter "export parameter box should be "checked"
can anyone help with the line of code that checks the box?
thanks to all..
Dim oDoc As PartDocument oDoc = ThisApplication.ActiveDocument Dim oCompDef As PartComponentDefinition oCompDef = oDoc.ComponentDefinition Dim oParameter As Parameter 'Check if Param Exists Try If Parameter("G_W") = Parameter("G_W") Then
<Enter line of code to check box>
End If Catch MessageBox.Show("Param doesn't exist", "Title") End Try
Solved! Go to Solution.