ContentAlignment 枚举

定义

指定绘图图面上内容的对齐方式。

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

字段

名称 说明
TopLeft 1

内容垂直对齐在顶部,在左侧水平对齐。

TopCenter 2

内容垂直对齐在顶部,水平对齐在中心。

TopRight 4

内容垂直对齐在顶部,在右侧水平对齐。

MiddleLeft 16

内容在中间垂直对齐,并在左侧水平对齐。

MiddleCenter 32

内容在中间垂直对齐,在中心水平对齐。

MiddleRight 64

内容在中间垂直对齐,右侧水平对齐。

BottomLeft 256

内容垂直对齐在底部,在左侧水平对齐。

BottomCenter 512

内容在底部垂直对齐,在中心水平对齐。

BottomRight 1024

内容在底部垂直对齐,右侧水平对齐。

示例

下面的代码示例演示如何使用 Point.PointSize 构造函数和 System.Drawing.ContentAlignment 枚举。 若要运行此示例,请将此代码粘贴到包含名为 Label1 的标签的Windows窗体中,并在窗体的构造函数中调用 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

适用于