Returns the identifier of object that owns a grip object.
Rhino.ObjectGripOwner (strObject)
strObject |
Required. String. The identifier of the grip object. |
String |
The identifier of object that owns a grip object if successful. |
Null |
If not successful, or on error. |
Dim strGrip, strOwner
strGrip = Rhino.GetObject("Select grip", 16384)
If Not IsNull(strGrip) Then
strOwner = Rhino.ObjectGripOwner(strGrip)
If Not IsNull(strOwner) Then
Rhino.Print strOwner
End If
End If