Vcl.ExtCtrls.TCustomControlBar.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates and initializes an instance of TCustomControlBar.

Call Create to instantiate a control bar at runtime. Control bars added to forms at design time are created automatically.

AOwner is a component, typically the form, that is responsible for freeing the control bar instance. It becomes the value of the Owner property.

See Also