HighlightTrack: Boolean;
The HighlightTrack property determines whether to highlight element on mouse over.
Aceptable values:
True. Default value. The element is highlighted on mouse over
False. The element is not highlighted on mouse over.
Executing this example requires a form that contains the ListView component with the identifier ListView1. The component must contain several columns and elements.
Sub ShowProc;
Begin
ListView1.Style := ListViewStyle.Report;
ListView1.ShowColumnHeaders := True;
ListView1.ShowHeaderButton := True;
ListView1.HighlightTrack := False;
End Sub ShowProc;
Example execution result: the ListView1 component displays column headers and the button that opens column headers' menu; elements highlighting on mouse over is disabled.
See also: