Vcl.Forms.TCustomActiveForm.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates a new TCustomActiveForm object.

Create is the TCustomActiveForm constructor.

AOwner specifies a component, typically the global application object, that becomes the value of the Owner property. The owner is responsible for initiating streaming of the active form and for freeing it.

See Also