閱讀英文版本

分享方式:


ContentAlignment 列舉

定義

指定在繪圖表面上的內容對齊。

C#
public enum ContentAlignment
繼承
ContentAlignment

欄位

名稱 Description
BottomCenter 512

內容垂直靠下對齊,且水平置中對齊。

BottomLeft 256

內容垂直靠下對齊,且水平靠左對齊。

BottomRight 1024

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

MiddleCenter 32

內容垂直居中對齊,且水平置中對齊。

MiddleLeft 16

內容垂直居中對齊,且水平靠左對齊。

MiddleRight 64

內容垂直居中對齊,且水平置中對齊。

TopCenter 2

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

TopLeft 1

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

TopRight 4

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

範例

下列程式代碼範例示範如何使用 Point.PointSize 建構函式和 System.Drawing.ContentAlignment 列舉。 若要執行此範例,請將此程式代碼貼入 Windows Form,其中包含名為 Label1 的標籤,並在表單的建構函式中呼叫 InitializeLabel1 方法。

C#
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";
}

適用於

產品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9