System.Actions.TContainedAction.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Instantiates and initializes a TContainedAction object.

Applications do not need to call Create directly. Actions are created automatically when you choose New Action in the Action List editor.

Create calls the inherited System.Classes.TBasicAction.Create constructor and then initializes the Enabled (setting it to True), Visible (setting it to True), and ImageIndex (setting it to -1) properties.

See Also