Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSpreadSheetTableItemGroups.Items Property

Provides zero-based indexed access to the table item groups at the current root node.

#Declaration

Delphi
property Items[Index: Integer]: TdxSpreadSheetTableItemGroup read; default;

#Property Value

Type
TdxSpreadSheetTableItemGroup

#Remarks

The Index parameter specifies the index of a column or row group at the root node level. The total number of table item groups created at the root node can be obtained by using the Count property.

The accessed group of table items should actually exist within the collection. If the specified group was not previously created, the Items property returns nil.

The Items property allows you to access only table item groups at the root node level. To obtain a table item group nested within a particular column or row group, use its Items property.

See Also