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

內容垂直靠上對齊,且水平靠右對齊。

範例

下列程式碼範例示範如何使用 Point.PointSize 建構函式和 System.Drawing.ContentAlignment 列舉。 若要執行此範例,請將此程式碼貼到包含名為 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

適用於