Verifies the existence of a linetype in the document.
Rhino.IsLinetype (strLinetype)
strLinetype |
Required. String. The name of an existing linetype. |
Boolean |
True or False indicating success or failure. |
Null |
On error. |
Dim strLinetype
strLinetype = Rhino.GetString("Linetype name")
If Rhino.IsLinetype(strLinetype) Then
Rhino.Print "The linetype exists."
Else
Rhino.Print "The linetype does not exist."
End If