System.Classes.TAlignment

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

Delphi

TAlignment = (taLeftJustify, taRightJustify, taCenter);

C++

enum DECLSPEC_DENUM TAlignment : unsigned char { taLeftJustify, taRightJustify, taCenter };

プロパティ

種類 可視性 ソース ユニット
enum public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

説明

TAlignment は、コントロール内でのテキストの配置方法を表します。

TAlignment に指定可能な値は次のとおりです。



意味

taLeftJustify

テキストは左揃えになります。すべての行がコントロールの左端から始まります。

taCenter

テキストはコントロールに中央揃えで配置されます。

taRightJustify

テキストは右揃えになります。すべての行がコントロールの右端で終わります。



関連項目