Vcl.Edge.TCustomEdgeBrowser.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TCustomEdgeBrowser(System::Classes::TComponent* AOwner);
/* TWinControl.CreateParented */ inline __fastcall TCustomEdgeBrowser(HWND ParentWindow) : Vcl::Controls::TWinControl(ParentWindow) { }

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Edge.pas
Vcl.Edge.hpp
Vcl.Edge TCustomEdgeBrowser

Description

Creates an instance of TWinControl.

Vcl.Edge.TCustomEdgeBrowser.Create inherits from Vcl.Controls.TWinControl.Create. All content below this line refers to Vcl.Controls.TWinControl.Create.

Creates an instance of TWinControl.

Call Create to construct and initialize a new control and insert the newly-constructed control into its owner, as specified by the AOwner parameter. Create inserts the control in the owner by calling the owner's InsertComponent method.

Most controls override Create to initialize their unique properties. Objects that override the Create method must always call the inherited Create method first, and then proceed with the component-specific initialization. Specify the override directive when overriding the Create method.

If a component's Create method allocates resources or memory, override the Destroy method to free those resources.

See Also