Vcl.StdCtrls.TCustomMemo.Create

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

プロパティ

種類 可視性 ソース ユニット
constructor public
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomMemo

説明

Create は,TCustomMemo のインスタンスを作成および初期化します。

TCustomMemo オブジェクトをインスタンス化するには,Create を呼び出します。

AOwner は,メモオブジェクトを解放する権限を持つコンポーネント(通常はフォーム)です。このパラメータは,Owner プロパティの値になります。

Create メソッドをオーバーライドする派生オブジェクトは,追加的な初期化をする前に継承された Create を呼び出す必要があります。

関連項目