ShowObject

Shows a previously hidden object.  Hidden objects are not visible, cannot be snapped to, and cannot be selected.

Syntax

rhinoscriptsyntax.ShowObject (object_id)

rhinoscript.object.ShowObject (object_id)

Parameters

object_id

Required.  String of Guid.  The identifier of the object to show.

Returns

Boolean

True or false indicating success or failure.

Example

import rhinoscriptsyntax as rs

obj = rs.GetObject("Select object to hide")

if obj: rs.HideObject(obj)

# Do something here...

rs.ShowObject( obj )

Also See

HideObject

HideObjects

IsObjectHidden

ShowObjects