Verifies an object is a text object.
Rhino.IsText (strObject)
strObject |
Required. String. The object's identifier. |
Boolean |
True if successful, otherwise False. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select a text object")
If Rhino.IsText(strObject) Then
Rhino.Print "The object is a text object."
Else
Rhino.Print "The object is not a text object."
End If