Verifies that an object is hidden. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
It is possible for an object to be visible, but reside on a layer that is hidden. In such case, the object will still report as visible.
Rhino.IsObjectHidden (strObject)
strObject |
Required. String. The identifier of an object. |
True |
The object is hidden. |
False |
The object is not hidden. |
Null |
On error. |
Dim strObject
'Do something here...
If Rhino.IsObjectHidden(strObject) Then
Rhino.Print "The object is hidden."
Else
Rhino.Print "The object is not hidden."
End If