Shows one or more hidden objects. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
Rhino.ShowObjects (arrObjects)
arrObjects |
Required. Array. An array of strings identifying the objects to show. |
Number |
The number of objects shown 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