UnlockGroup

Unlocks a group of locked objects.  Locked object are visible, and they can be snapped to.  But, they cannot be selected.

Syntax

rhinoscriptsyntax.UnlockGroup (group_name)

rhinoscript.group.UnlockGroup (group_name)

Parameters

group_name

Required.  String.  The name of an existing group.

Returns

Number

The number of object that were unlocked if successful.

None

On error.

Example

import rhinoscriptsyntax as rs

groups = rs.GroupNames()

if groups:

    for group in groups: rs.UnlockGroup(group)

Also See

HideGroup

LockGroup

ShowGroup