Vcl.DBCtrls.TDBEdit.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

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