Vcl.DBCtrls.TCustomDBLookupComboBox.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates an instance of TCustomDBLookupComboBox.

Call Create to instantiate a lookup control at runtime. For lookup controls placed on forms or data modules at design time, Create is called automatically.

AOwner is the component that is responsible for freeing the lookup control. It becomes the value of the Owner property.

See Also