Unlocks a group of locked objects. Locked object are visible, and they can be snapped to. But, they cannot be selected.
Rhino.UnlockGroup (strGroup)
strGroup |
Required. String. The name of an existing group. |
Number |
The number of object that were unlocked if successful. |
Null |
On error. |
Dim arrGroups, strGroup
arrGroups = Rhino.GroupNames
If IsArray(arrGroups) Then
For Each strGroup In arrGroups
Rhino.UnlockGroup strGroup
Next
End If