Removes one or more objects from an existing group.
Rhino.RemoveObjectsFromGroup (arrObjects, strGroup)
arrObjects |
Required. Array. An array of object identifiers. |
strGroup |
Required. String. The name of an existing group. |
Number |
The number of objects removed from the group if successful. |
Null |
If not successful, or on error. |
Dim arrObjects, strGroup
strGroup = "NewGroup"
arrObjects = Rhino.GetObjects("Select objects")
If IsArray(arrObjects) Then
Rhino.RemoveObjectsFromGroup arrObjects, strGroup
End If