TextBox.TextAlign プロパティ

定義

TextBox コントロールでテキストをどのように配置するかを取得または設定します。

public:
 property System::Windows::Forms::HorizontalAlignment TextAlign { System::Windows::Forms::HorizontalAlignment get(); void set(System::Windows::Forms::HorizontalAlignment value); };
public System.Windows.Forms.HorizontalAlignment TextAlign { get; set; }
member this.TextAlign : System.Windows.Forms.HorizontalAlignment with get, set
Public Property TextAlign As HorizontalAlignment

プロパティ値

HorizontalAlignment

コントロールでテキストをどのように配置するかを指定する HorizontalAlignment 列挙値の 1 つ。 既定値は、HorizontalAlignment.Left です。

例外

列挙体の有効値の範囲内にない値が、プロパティに代入されました。

次のコード例では、パスワードを TextBox 受け入れるために使用されるコントロールを作成します。 この例では、プロパティを CharacterCasing 使用して、入力されたすべての文字を小文字に変更し、プロパティを MaxLength 使用してパスワードの長さを 8 文字に制限します。 この例では、プロパティを TextAlign 使用して、コントロール内のパスワードを中央揃え TextBox します。

public:
   void CreateMyPasswordTextBox()
   {
      // Create an instance of the TextBox control.
      TextBox^ textBox1 = gcnew TextBox;
      // Set the maximum length of text in the control to eight.
      textBox1->MaxLength = 8;
      // Assign the asterisk to be the password character.
      textBox1->PasswordChar = '*';
      // Change all text entered to be lowercase.
      textBox1->CharacterCasing = CharacterCasing::Lower;
      // Align the text in the center of the TextBox control.
      textBox1->TextAlign = HorizontalAlignment::Center;
   }
public void CreateMyPasswordTextBox()
 {
    // Create an instance of the TextBox control.
    TextBox textBox1 = new TextBox();
    // Set the maximum length of text in the control to eight.
    textBox1.MaxLength = 8;
    // Assign the asterisk to be the password character.
    textBox1.PasswordChar = '*';
    // Change all text entered to be lowercase.
    textBox1.CharacterCasing = CharacterCasing.Lower;
    // Align the text in the center of the TextBox control.
    textBox1.TextAlign = HorizontalAlignment.Center;
 }
Public Sub CreateMyPasswordTextBox()
    ' Create an instance of the TextBox control.
    Dim textBox1 As New TextBox()
    ' Set the maximum length of text in the control to eight.
    textBox1.MaxLength = 8
    ' Assign the asterisk to be the password character.
    textBox1.PasswordChar = "*"c
    ' Change all text entered to be lowercase.
    textBox1.CharacterCasing = CharacterCasing.Lower
    ' Align the text in the center of the TextBox control.
    textBox1.TextAlign = HorizontalAlignment.Center
End Sub

注釈

このプロパティを使用すると、フォーム上のテキストのレイアウトに合わせてテキストを a TextBox 内に配置できます。 たとえば、コントロールがすべてフォームの右側にある場合は、プロパティをHorizontalAlignment.Right設定TextAlignできます。テキストは、既定の左側の配置ではなく、コントロールの右側に配置されます。

適用対象

こちらもご覧ください