Vcl.DBCtrls.TDBText.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TDBText(System::Classes::TComponent* AOwner);

Properties

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

Description

Creates an instance of TDBText.

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

The AOwner parameter specifies the Owner for the TDBText control. The Owner is responsible for freeing the control. Typically, this is a form.

See Also