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