Returns the identifiers of all hidden objects in the document. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
Rhino.HiddenObjects ([blnIncludeLights])
|
blnIncludeLights |
Optional. Boolean. Include light objects. If omitted, light objects are not returned (False). |
|
Array |
An array of strings identifying the objects if successful. |
|
Null |
If not successful, or on error. |
Dim arrObjects, strObject
arrObjects = Rhino.HiddenObjects
If IsArray(arrObjects) Then
For Each strObject In arrObjects
Rhino.Print "Object identifier: " & strObject
Next
End If