TextBox.TextAlign Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define o alinhamento do texto em um controle 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
Valor da propriedade
Um dos valores de enumeração HorizontalAlignment que especifica como o texto é alinhado no controle. O padrão é HorizontalAlignment.Left
.
Exceções
Um valor que não está dentro do intervalo de valores válidos para a enumeração foi atribuído à propriedade.
Exemplos
O exemplo de código a seguir cria um TextBox controle usado para aceitar uma senha. Este exemplo usa a CharacterCasing propriedade para alterar todos os caracteres tipado para minúsculas e a MaxLength propriedade para restringir o comprimento da senha a oito caracteres. Este exemplo também usa a TextAlign propriedade para centralizar a senha no TextBox controle.
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
Comentários
Você pode usar essa propriedade para alinhar o texto dentro de um TextBox para corresponder ao layout do texto em seu formulário. Por exemplo, se os controles estiverem todos localizados no lado direito do formulário, você poderá definir a TextAlign propriedade HorizontalAlignment.Right
como , e o texto será alinhado com o lado direito do controle em vez do alinhamento padrão à esquerda.