IsObjectHidden

Verifies that an object is hidden.  Hidden objects are not visible, cannot be snapped to, and cannot be selected.

Syntax

rhinoscriptsyntax.IsObjectHidden (object_id)

rhinoscript.object.IsObjectHidden (object_id)

Parameters

object_id

Required.  String or guid.  The identifier of an object.

Returns

True

The object is hidden.

False

The object is not hidden.

Example

import rhinoscriptsyntax as rs

# Do something here...

if rs.IsObjectHidden(id):

    print "The object is hidden."

else:

    print "The object is not hidden."

Also See

IsObject

IsObjectInGroup

IsObjectLocked

IsObjectNormal

IsObjectReference

IsObjectSelectable

IsObjectSelected

IsObjectSolid