TdxSpreadSheetTableItemEnumProc Type
A reference to an anonymous procedure that iterates through multiple cell objects in a single row.
Declaration
TdxSpreadSheetTableItemEnumProc = reference to procedure(ACell: TdxSpreadSheetCell);
Parameters
Name | Type |
---|---|
ACell | TdxSpreadSheetCell |
Remarks
Use the ACell parameter within a TdxSpreadSheetTableItemEnumProc anonymous procedure to address multiple cell objects at once as described in the How to Customize All Cell Objects at Once topic.
You can pass a lambda expression in C++Builder code as a parameter that accepts an anonymous procedure if a Clang-enhanced C++ Compiler is available. Otherwise – you need to use a Functor C++ template to pass a pointer to a TdxSpreadSheetTableItemEnumProc procedure implementation as described in the mentioned topic.
The TdxSpreadSheetTableItem.EnumCells and TdxSpreadSheetTableRow.EnumCells procedures accept a TdxSpreadSheetTableItemEnumProc reference as the AEnumProc parameter.