Verifies that a plug-in is registered.
Rhino.IsPlugIn (strPlugIn)
strPlugIn |
Required. String. The name or identifier of an existing plug-in. |
True |
If successful. |
False |
If not successful. |
Null |
On error. |
Dim strPlugIn
strPlugIn = Rhino.GetString("Plug-in name")
If Rhino.IsPlugIn(strLayer) Then
Rhino.Print "The plug-in is registered."
Else
Rhino.Print "The plug-in is not registered."
End If