Verifies an object is a text dot object.
Rhino.IsTextDot (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 dot object")
If Rhino.IsTextDot(strObject) Then
Rhino.Print "The object is a text dot object."
Else
Rhino.Print "The object is not a text dot object."
End If