ShowObjects

Shows one or more hidden objects.  Hidden objects are not visible, cannot be snapped to, and cannot be selected.

Syntax

rhinoscriptsyntax.ShowObjects (object_ids)

rhinoscript.object.ShowObjects (object_ids)

Parameters

object_ids

Required.  List.  A list of strings or Guids identifying the objects to show.

Returns

Number

The number of objects shown if successful.

Example

import rhinoscriptsyntax as rs

objs = rs.GetObjects("Select objects to hide")

if objs: rs.HideObjects(objs)

#Do something here...

rs.ShowObjects( objs )

Also See

HideObject

HideObjects

IsObjectHidden

ShowObject