Vcl.Graphics.TCustomCanvas.TextExtent
Delphi
function TextExtent(const Text: string): TSize; virtual; abstract;
C++
virtual System::Types::TSize __fastcall TextExtent(const System::UnicodeString Text) = 0 ;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | Vcl.Graphics.pas Vcl.Graphics.hpp |
Vcl.Graphics | TCustomCanvas |
説明
現在のフォントで表示されている文字列の幅と高さをピクセル単位で返します。
画像で文字列が占めているスペースに関する情報を提供するために TextExtent メソッドをオーバーライドします。画像での他の要素(線、ボックス、テキストの追加行など)は、テキストのサイズに適合するように配置できます。TextExtent はキャンバスでテキストを囲む矩形の幅と高さを返します。
TextHeight と TextWidth の両方のメソッドが TextExtent を呼び出し、幅と高さの情報を取得します。