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) { }
/* 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 an instance of TCustomDockForm.

Typically, applications do not create instances of TCustomDockForm. Instead, this class is instantiated automatically as needed by controls that specify it as the value of their FloatingDockSiteClass property.

AOwner is the dock form's owner.

See Also