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