System.Actions.TContainedAction.OnHint

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnHint: THintEvent read FOnHint write FOnHint;

C++

__property System::Classes::THintEvent OnHint = {read=FOnHint, write=FOnHint};

Properties

Type Visibility Source Unit Parent
event public
System.Actions.pas
System.Actions.hpp
System.Actions TContainedAction

Description

Occurs when the mouse pauses over a client control or menu item.

Use OnHint to override the default hint that appears when the user pauses the mouse over a client control or menu item. The OnHint event handler can change the hint that appears (by changing the string stored in the client's Hint property), or display the hint in an application-specific way.

See Also