Skip to main content

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

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