Shows a group of previously hidden objects. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
Rhino.ShowGroup (strGroup)
strGroup |
Required. String. The name of an existing group. |
Number |
The number of object that were shown if successful. |
Null |
On error. |
Dim arrGroups, strGroup
arrGroups = Rhino.GroupNames
If IsArray(arrGroups) Then
For Each strGroup In arrGroups
Rhino.ShowGroup strGroup
Next
End If