Vcl.StdActns.THintAction.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual THintAction(System::Classes::TComponent* AOwner);

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.StdActns.pas
Vcl.StdActns.hpp
Vcl.StdActns THintAction

Description

Creates an instance of THintAction.

Typically, you do not need to create THintAction instances. THintAction is created by the application object when it detects the need to display a hint.

You can, however, create a THintAction object, set its Hint property, and then call its Execute method to cause other controls in the application (such as status bars) to display a message for some application-generated condition (such as a status message).

AOwner is the component, typically the application object, that is responsible for freeing the THintAction object.

See Also