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

TdxSpreadSheetMergedCellListEnumCellsProc Type

A reference to an anonymous procedure which iterates through multiple merged cells.

#Declaration

Delphi
TdxSpreadSheetMergedCellListEnumCellsProc = reference to procedure(ACell: TdxSpreadSheetMergedCell);

#Parameters

Name Type
ACell TdxSpreadSheetMergedCell

#Remarks

Implement a TdxSpreadSheetMergedCellListEnumCellsProc anonymous procedure to address multiple merged cells simultaneously. The ACell parameter allows you to modify all iterated merged cells passed by a merged cell enumeration method.

Since C++Builder does not support anonymous functions, you need to wrap the respective TdxSpreadSheetMergedCellListEnumCellsProc method interface exposed as the Invoke method.

The TdxSpreadSheetMergedCellListEnumCellsProc type is referenced by the merged cell collection‘s EnumCells procedure.

See Also