Verifies that an object is hidden. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
rhinoscriptsyntax.IsObjectHidden (object_id)
rhinoscript.object.IsObjectHidden (object_id)
object_id |
Required. String or guid. The identifier of an object. |
True |
The object is hidden. |
False |
The object is not hidden. |
import rhinoscriptsyntax as rs
# Do something here...
if rs.IsObjectHidden(id):
print "The object is hidden."
else:
print "The object is not hidden."