Vcl.ExtCtrls.TCustomCategoryPanel.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.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomCategoryPanel

Description

Initializes the panel's bounds after the category panel has been assigned to its category panel group.

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.

As implemented by TCustomCategoryPanel, Loaded calculates and assigns the bounding rectangle of the panel if the panel has been assigned to a category panel group.

Loaded is a protected method and so can only be called in the implementation of an extended class of TCustomCategoryPanel.

See Also