Removes an existing group from the document. Reference groups cannot be removed. Deleting a group does not delete the member objects.
Rhino.DeleteGroup (strGroup)
strGroup |
Required. String. The name of an existing group. |
Boolean |
True or False indicating success or failure. |
Null |
On error. |
Dim arrGroups, strGroup
arrGroups = Rhino.GroupNames
If IsArray(arrGroups) Then
For Each strGroup in arrGroups
Rhino.DeleteGroup strGroup
Next
End If