Vcl.ComCtrls.TCustomRichEdit.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomRichEdit

Description

Creates an instance of TCustomRichEdit.

Call Create to create an instance of TCustomRichEdit at runtime. Rich edit controls added to forms at design time are created automatically.

AOwner is a component, typically the form, that becomes the value of the Owner property.

See Also