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