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

TdxSpreadSheetTableItemEnumProc Type

A reference to an anonymous procedure that iterates through multiple cell objects in a single row.

#Declaration

Delphi
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.

See Also