Hides one or more objects. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
Rhino.HideObjects (arrObjects)
arrObjects |
Required. Array. An array of strings identifying the objects to hide. |
Number |
The number of objects hidden if successful. |
Null |
If not successful, or on error. |
Dim arrObjects
arrObjects = Rhino.GetObjects("Select objects to hide")
If IsArray(arrObjects) Then
Rhino.HideObjects arrObjects
End If
'Do something here...
Rhino.ShowObjects arrObjects