Vcl.ComCtrls.TCustomListView.HotTrack

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property HotTrack: Boolean read FHotTrack write SetHotTrack default False;

C++

__property bool HotTrack = {read=FHotTrack, write=SetHotTrack, default=0};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomListView

Description

Specifies whether list items are highlighted when the mouse passes over them.

Set HotTrack to true to provide visual feedback about which item is under the mouse. When HotTrack is true, the HoverTime property controls whether pausing the mouse over an item causes it to be selected. When HotTrack is false, there is no visual feedback when the mouse passes over items and users can't select items by pausing the mouse.

To specify hot tracking styles, use the HotTrackStyles property.

See Also