ContentAlignment 列挙型

定義

描画面でのコンテンツの配置方法を指定します。

public enum class ContentAlignment
public enum ContentAlignment
type ContentAlignment = 
Public Enum ContentAlignment
継承
ContentAlignment

フィールド

BottomCenter 512

コンテンツは下端中央に配置されます。

BottomLeft 256

コンテンツは下端左寄せに配置されます。

BottomRight 1024

コンテンツは下端右寄せに配置されます。

MiddleCenter 32

コンテンツは中段中央に配置されます。

MiddleLeft 16

コンテンツは中段左寄せに配置されます。

MiddleRight 64

コンテンツは中段右寄せに配置されます。

TopCenter 2

コンテンツは上端中央に配置されます。

TopLeft 1

コンテンツは上端左寄せに配置されます。

TopRight 4

コンテンツは上端右寄せに配置されます。

次のコード例では、and コンストラクターと列挙型をPoint.Point使用する方法をSystem.Drawing.ContentAlignmentSizeします。 この例を実行するには、このコードを名前付きのLabel1ラベルを含む Windows Form に貼り付け、フォームのコンストラクターでメソッドを呼び出InitializeLabel1します。

void InitializeLabel1()
{
   // Set a border.
   Label1->BorderStyle = BorderStyle::FixedSingle;
   
   // Set the size, constructing a size from two integers.
   Label1->Size = System::Drawing::Size( 100, 50 );
   
   // Set the location, constructing a point from a 32-bit integer
   // (using hexadecimal).
   Label1->Location = Point(0x280028);
   
   // Set and align the text on the lower-right side of the label.
   Label1->TextAlign = ContentAlignment::BottomRight;
   Label1->Text = "Bottom Right Alignment";
}
private void InitializeLabel1()
{
    // Set a border.
    Label1.BorderStyle = BorderStyle.FixedSingle;

    // Set the size, constructing a size from two integers.
    Label1.Size = new Size(100, 50);

    // Set the location, constructing a point from a 32-bit integer
    // (using hexadecimal).
    Label1.Location = new Point(0x280028);

    // Set and align the text on the lower-right side of the label.
    Label1.TextAlign = ContentAlignment.BottomRight;
    Label1.Text = "Bottom Right Alignment";
}
Private Sub InitializeLabel1()

    ' Set a border.
    Label1.BorderStyle = BorderStyle.FixedSingle

    ' Set the size, constructing a size from two integers.
    Label1.Size = New Size(100, 50)

    ' Set the location, constructing a point from a 32-bit integer
    ' (using hexadecimal).
    Label1.Location = New Point(&H280028)

    ' Set and align the text on the lower-right side of the label.
    Label1.TextAlign = ContentAlignment.BottomRight
    Label1.Text = "Bottom Right Alignment"
End Sub

適用対象