Vcl.Touch.GestureCtrls.TGestureListView.OnInfoTip

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnInfoTip: TLVInfoTipEvent read FOnInfoTip write FOnInfoTip;

C++

__property OnInfoTip;

Properties

Type Visibility Source Unit Parent
event published
Vcl.Touch.GestureCtrls.pas
Vcl.Touch.GestureCtrls.hpp
Vcl.Touch.GestureCtrls TGestureListView

Description

Occurs when the user pauses the mouse over an item in the list view.

Vcl.Touch.GestureCtrls.TGestureListView.OnInfoTip inherits from Vcl.ComCtrls.TCustomListView.OnInfoTip. All content below this line refers to Vcl.ComCtrls.TCustomListView.OnInfoTip.

Occurs when the user pauses the mouse over an item in the list view.

Use OnInfoTip to provide help hints that are specific to individual items in the list view.

By default, when Help hints are enabled (that is, when ShowHint is True), the list view displays the hint specified by its Hint property. OnInfoTip allows the list view to override this value to specify a hint that is specific to the item under the mouse.

OnInfoTip is an event handler of type Vcl.ComCtrls.TLVInfoTipEvent.

See Also