IListView.HighlightTrack

Syntax

HighlightTrack: Boolean;

Description

The HighlightTrack property determines whether to highlight element on mouse over.

Comments

Aceptable values:

Example

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:

IListView