API:Vcl.Forms.TCustomDockForm.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TCustomDockForm(System::Classes::TComponent* AOwner);
/* TCustomForm.CreateNew */ inline __fastcall virtual TCustomDockForm(System::Classes::TComponent* AOwner, int Dummy) : TCustomForm(AOwner, Dummy) { }
/* TCustomForm.CreateScaledNew */ inline __fastcall virtual TCustomDockForm(System::Classes::TComponent* AOwner, int ADPI, int Dummy) : TCustomForm(AOwner, ADPI, Dummy) { }
/* TWinControl.CreateParented */ inline __fastcall TCustomDockForm(HWND ParentWindow) : TCustomForm(ParentWindow) { }

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomDockForm

Description

Creates and initializes a new TForm object.

Vcl.Forms.TCustomDockForm.Create inherits from Vcl.Forms.TCustomForm.Create. All content below this line refers to Vcl.Forms.TCustomForm.Create.

Creates and initializes a new TForm object.

Use Create to instantiate a TForm object or descendant of TForm at runtime. AOwner is the owner of the TCustomForm object.

For descendants of TCustomForm that are not TForm objects, use CreateNew instead. Calling Create for a TCustomForm descendant that is not a TForm will raise an exception.

See Also