Unselects an object's grips. Note, the grips will not be turned off.
Rhino.UnselectObjectGrips (strObject)
strObject |
Required. String. The identifier of the object. |
Number |
The number of grips unselected if successful. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select object")
If Rhino.ObjectGripsSelected(strObject) = True Then
Rhino.UnselectObjectGrips strObject
End If