API:Vcl.DBCtrls.TDBMemo.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TDBMemo(System::Classes::TComponent* AOwner);
/* TWinControl.CreateParented */ inline __fastcall TDBMemo(HWND ParentWindow) : Vcl::Stdctrls::TCustomMemo(ParentWindow) { }

Properties

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

Description

Creates and initializes an instance of TCustomMemo.

Vcl.DBCtrls.TDBMemo.Create inherits from Vcl.StdCtrls.TCustomMemo.Create. All content below this line refers to Vcl.StdCtrls.TCustomMemo.Create.

Creates and initializes an instance of TCustomMemo.

Call Create to instantiate a TCustomMemo object.

AOwner is the component, typically the form, that is responsible for freeing the memo object. This becomes the value of the Owner property.

Derived objects that override the Create method should call the inherited Create before making any additional initializations.

See Also