Vcl.DBCtrls.TDBLabeledEdit.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates an instance of TDBEdit.

Vcl.DBCtrls.TDBLabeledEdit.Create inherits from Vcl.DBCtrls.TDBEdit.Create. All content below this line refers to Vcl.DBCtrls.TDBEdit.Create.

Creates an instance of TDBEdit.

Call Create to create a TDBEdit object at runtime. TDBEdit objects placed on a form at design time are created automatically.

Create overrides the inherited constructor to initialize the database handling capabilities of the edit control.

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

See Also