Vcl.ComCtrls.TCustomListView.OnInfoTip

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnInfoTip: TLVInfoTipEvent read FOnInfoTip write FOnInfoTip;

C++

__property TLVInfoTipEvent OnInfoTip = {read=FOnInfoTip, write=FOnInfoTip};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomListView

Description

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