Vcl.StdCtrls.TCustomCombo.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomCombo

Description

Creates and initializes a TCustomCombo instance.

Call Create to generate a combo box at runtime. Combo boxes placed on forms at design time are created automatically.

AOwner is a component (typically a form) that is responsible for freeing the combo box instance.

See Also