ShowGroup

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

Syntax

rhinoscriptsyntax.ShowGroup (group_name)

rhinoscript.group.ShowGroup (group_name)

Parameters

group_name

Required.  String.  The name of an existing group.

Returns

Number

The number of object that were shown if successful.

None

On error.

Example

import rhinoscriptsyntax as rs

groups = rs.GroupNames()

if groups:

    for group in groups: rs.ShowGroup(group)

Also See

HideGroup

LockGroup

UnlockGroup