Click or drag to resize

GroupTableItem Property

Conceptually, the group table is an array of groups. The operator[] can be used to get individual groups. A group is either active or deleted and this state is reported by Group.IsDeleted.

Namespace:  Rhino.DocObjects.Tables
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.5
Syntax
public Group this[
	int index
] { get; }

Parameters

index
Type: SystemInt32
zero based array index.

Return Value

Type: Group
Reference to the group. If index is out of range, null is returned. Note that this reference may become invalid after Add() is called.
See Also