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

TcxCustomGridColumnOptions.CellMerging Property

Specifies if the column’s sequential cells that display the same value are merged into one cell.

#Declaration

Delphi
property CellMerging: Boolean read; write; default False;

#Property Value

Type Default
Boolean False

#Remarks

Set this property to True to enable cell merging for the column. The column uses the display values of its cells for equality comparisons. You can handle the column’s OnCompareValuesForCellMerging event to implement your own comparison method.

The image below shows the grid View whose Trademark column merges sequential cells based on their display values.

Note

A column that uses cell merging is read-only.

The default value of the CellMerging property is False.

See Also