Verifies that an object's grips are turned on.
Rhino.ObjectGripsOn (strObject)
strObject |
Required. String. The identifier of the object. |
Boolean |
True of False indicating success or failure. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select object")
If Rhino.ObjectGripsOn(strObject) = True Then
Rhino.Print "Grip count = " & CStr(Rhino.ObjectGripCount(strObject))
End If