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

TdxSpreadSheetTableItemGroup.Find(Integer,Boolean) Method

Returns the first child table item group with the specified index nested within the current table item group (node).

#Declaration

Delphi
function Find(AIndex: Integer; ARecursive: Boolean = True): TdxSpreadSheetTableItemGroup;

#Parameters

Name Type
AIndex Integer
ARecursive Boolean

#Returns

Type
TdxSpreadSheetTableItemGroup

#Remarks

Use this function to obtain a nested column or row group whose zero-based index is specified as the AIndex parameter. By default, the Find function continues its search at the next nesting level if a table item group with the specified index is not found within the current table item group (node). The optional ARecursive parameter allows you to limit the scope of this search with the current node.

If the Find function is unable to obtain the table item group with the specified index, it returns nil.

Note

If you need to search a group starting from the table item group root node, invoke its Find function.

See Also