Vcl.DBCtrls.TDBComboBox.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TDBComboBox

Description

Creates an instance of TDBComboBox.

Call Create to instantiate a TDBComboBox object at runtime. For TDBComboBox objects placed on forms at design time, Create is called automatically.

AOwner is the component, typically the form, that is responsible for freeing the combo box. It becomes the value of the Owner property.

See Also