Back to Devexpress

TcxGridTableOptionsView.HighlightFixedColumns Property

vcl-cxgridtableview-dot-tcxgridtableoptionsview-1373c85c.md

latest1.6 KB
Original Source

TcxGridTableOptionsView.HighlightFixedColumns Property

Specifies if the grid Table View highlights fixed columns.

Declaration

delphi
property HighlightFixedColumns: Boolean read; write; default False;

Property Value

TypeDefaultDescription
BooleanFalse

True if fixed columns are highlighted; otherwise, False.

|

Remarks

Use the FixedColumnHighlightColor property to change the color of the highlight effect:

delphi
cxGrid1DBTableView1.OptionsView.HighlightFixedColumns := True; // Enables the highlight effect
  cxGrid1DBTableView1.OptionsView.FixedColumnHighlightColor := dxColorToAlphaColor(clWebLightBlue, 50);
cpp
cxGrid1DBTableView1->OptionsView->HighlightFixedColumns = true; // Enables the highlight effect
  cxGrid1DBTableView1->OptionsView->FixedColumnHighlightColor = dxColorToAlphaColor(clWebLightBlue, 50);

The HighlightFixedColumns property’s default value is False.

See Also

TcxGridTableOptionsView Class

TcxGridTableOptionsView Members

cxGridTableView Unit