Unselects an object's grips. Note, the grips will not be turned off.
rhinoscriptsyntax.UnselectObjectGrips (object_id)
rhinoscript.grips.UnselectObjectGrips (object_id)
object_id |
Required. String or Guid. The identifier of the object. |
Number |
The number of grips unselected if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
obj = rs.GetObject("Select object")
if rs.ObjectGripsSelected(obj): rs.UnselectObjectGrips(obj)