Vcl.ExtCtrls.TCustomFlowPanel.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomFlowPanel

Description

Creates and initializes an instance of TCustomPanel.

Vcl.ExtCtrls.TCustomFlowPanel.Create inherits from Vcl.ExtCtrls.TCustomPanel.Create. All content below this line refers to Vcl.ExtCtrls.TCustomPanel.Create.

Creates and initializes an instance of TCustomPanel.

Call Create to instantiate a panel at runtime. Panels placed in forms at design time do not need to be explicitly created because they are created automatically.

AOwner is the component, typically a form, that is responsible for freeing the panel.

See Also