Vcl.Buttons.TSpeedButton.Loaded

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Loaded; override;

C++

virtual void __fastcall Loaded();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Buttons.pas
Vcl.Buttons.hpp
Vcl.Buttons TSpeedButton

Description

Initializes the control after it is loaded from a stream.

Vcl.Buttons.TSpeedButton.Loaded inherits from Vcl.Controls.TControl.Loaded. All content below this line refers to Vcl.Controls.TControl.Loaded.

Initializes the control after it is loaded from a stream.

Do not call Loaded. The VCL streaming system calls Loaded automatically after the control's form is loaded into memory so that the control can complete any initializations that depend on other objects in the form.

Loaded overrides the inherited method in order to initialize the control from its associated Action. To change the properties the control copies from its action, override the ActionChange method.

See Also