ContentAlignment 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
描画面でのコンテンツの配置方法を指定します。
public enum class ContentAlignment
public enum ContentAlignment
type ContentAlignment =
Public Enum ContentAlignment
- 継承
フィールド
BottomCenter | 512 | コンテンツは下端中央に配置されます。 |
BottomLeft | 256 | コンテンツは下端左寄せに配置されます。 |
BottomRight | 1024 | コンテンツは下端右寄せに配置されます。 |
MiddleCenter | 32 | コンテンツは中段中央に配置されます。 |
MiddleLeft | 16 | コンテンツは中段左寄せに配置されます。 |
MiddleRight | 64 | コンテンツは中段右寄せに配置されます。 |
TopCenter | 2 | コンテンツは上端中央に配置されます。 |
TopLeft | 1 | コンテンツは上端左寄せに配置されます。 |
TopRight | 4 | コンテンツは上端右寄せに配置されます。 |
例
次のコード例では、 および コンストラクターと 列挙型をPoint.Point使用する方法をSystem.Drawing.ContentAlignment示Sizeします。 この例を実行するには、このコードを という名前 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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET