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.Left
.
Исключения
Свойству присвоено значение, которое не входит в диапазон допустимых значений для данного перечисления.
Примеры
В следующем примере кода создается элемент управления, используемый TextBox для принятия пароля. В этом примере свойство используется CharacterCasing для изменения всех символов, введенных в нижний регистр, а MaxLength свойство ограничивает длину пароля до восьми символов. В этом примере также используется 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
Комментарии
Это свойство можно использовать для выравнивания текста внутри TextBox текста в соответствии с макетом текста в форме. Например, если все элементы управления расположены в правой части формы, можно задать TextAlign для свойства значение HorizontalAlignment.Right
, а текст будет выравнивать по правому краю элемента управления вместо выравнивания по умолчанию по левому краю.