Skip to main content

TdxSpreadSheetTableItem.EnumCells(TdxSpreadSheetTableItemEnumProc) Method

Performs the required actions on all valid cell objects within the current table item.

Declaration

procedure EnumCells(AEnumProc: TdxSpreadSheetTableItemEnumProc); virtual;

Parameters

Name Type
AEnumProc TdxSpreadSheetTableItemEnumProc

Remarks

You do not need to use the EnumCells function, since it is overridden in the TdxSpreadSheetTableRow class with the row-specific implementation.

The AEnumProc parameter specifies the TdxSpreadSheetTableItemEnumProc anonymous procedure whose ACell parameter is used to address each valid cell object within the current row object.

Refer to the How to Customize All Cell Objects at Once topic for details on the practical use of the EnumCells procedure.

Note

To access and modify all cell objects within a Table View worksheet, use its ForEachCell procedure.

See Also