Unlocks a group of locked objects. Locked object are visible, and they can be snapped to. But, they cannot be selected.
rhinoscriptsyntax.UnlockGroup (group_name)
rhinoscript.group.UnlockGroup (group_name)
group_name |
Required. String. The name of an existing group. |
Number |
The number of object that were unlocked if successful. |
None |
On error. |
import rhinoscriptsyntax as rs
groups = rs.GroupNames()
if groups:
for group in groups: rs.UnlockGroup(group)