API:Vcl.AxCtrls.TActiveForm.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.AxCtrls.pas
Vcl.AxCtrls.hpp
Vcl.AxCtrls TActiveForm

Description

Creates a new TCustomActiveForm object.

Vcl.AxCtrls.TActiveForm.Create inherits from Vcl.Forms.TCustomActiveForm.Create. All content below this line refers to Vcl.Forms.TCustomActiveForm.Create.

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