Skip to main content

TcxCustomGridColumnOptions.CellMerging Property

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

Declaration

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