Vcl.ComCtrls.TCustomTabControl.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.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomTabControl

Description

Form load event dispatcher.

The protected Loaded method is called automatically when the form that contains the tab control is loaded into memory. It provides an opportunity for the tab control to perform any initializations after the control and all other components in the form are loaded into memory, but before the first paint operation.

In TCustomTabControl, Loaded ensures that the layout of the tabs accommodate the images specified by the Images property.

See Also