API:Vcl.AxCtrls.TPropertyPage.Create
Delphi
constructor Create(AOwner: TComponent); override;
C++
__fastcall virtual TPropertyPage(System::Classes::TComponent* AOwner);
/* TCustomForm.CreateNew */ inline __fastcall virtual TPropertyPage(System::Classes::TComponent* AOwner, int Dummy) : Vcl::Forms::TCustomForm(AOwner, Dummy) { }
/* TCustomForm.CreateScaledNew */ inline __fastcall virtual TPropertyPage(System::Classes::TComponent* AOwner, int ADPI, int Dummy) : Vcl::Forms::TCustomForm(AOwner, ADPI, Dummy) { }
/* TWinControl.CreateParented */ inline __fastcall TPropertyPage(HWND ParentWindow) : Vcl::Forms::TCustomForm(ParentWindow) { }
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| constructor | public | Vcl.AxCtrls.pas Vcl.AxCtrls.hpp |
Vcl.AxCtrls | TPropertyPage |
Description
Creates and initializes a new TForm object.
Vcl.AxCtrls.TPropertyPage.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.