TcxGridBandedTableOptionsView.HighlightFixedBands Property
Specifies if the Banded Table View highlights fixed bands.
Declaration
property HighlightFixedBands: Boolean read; write; default False;
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | False | True if fixed bands are highlighted; otherwise, False. |
Remarks
Use the FixedBandHighlightColor property to change the color of the highlight effect:
cxGrid1DBBandedTableView1.OptionsView.HighlightFixedBands := True; // Enables the highlight effect
cxGrid1DBBandedTableView1.OptionsView.FixedBandHighlightColor := dxColorToAlphaColor(clWebLightBlue, 50);

The HighlightFixedBands property’s default value is False.
See Also