Vcl.DBCtrls.TPopupDataList.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates an instance of TDBLookupListBox.

Vcl.DBCtrls.TPopupDataList.Create inherits from Vcl.DBCtrls.TDBLookupListBox.Create. All content below this line refers to Vcl.DBCtrls.TDBLookupListBox.Create.

Creates an instance of TDBLookupListBox.

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

Pass a single Component as a parameter to provide the TDBLookupListBox object with an Owner that is responsible for freeing it.After calling the inherited constructor to allocate and initialize a generic lookup control, Create creates and initializes the helper objects needed to link to a dataset.

See Also