TextBox.CharacterCasing 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 se o controle TextBox modifica as maiúsculas e minúsculas de caracteres quando eles são digitados.
public:
property System::Windows::Forms::CharacterCasing CharacterCasing { System::Windows::Forms::CharacterCasing get(); void set(System::Windows::Forms::CharacterCasing value); };
public System.Windows.Forms.CharacterCasing CharacterCasing { get; set; }
member this.CharacterCasing : System.Windows.Forms.CharacterCasing with get, set
Public Property CharacterCasing As CharacterCasing
Valor da propriedade
Um dos valores de enumeração CharacterCasing que especifica se o controle TextBox modifica as maiúsculas e minúsculas de caracteres. O padrão é CharacterCasing.Normal
.
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 que é usado para aceitar uma senha. Este exemplo usa a CharacterCasing propriedade para alterar todos os caracteres digitado em letras 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 a CharacterCasing propriedade para alterar o caso de caracteres conforme exigido pelo aplicativo. Por exemplo, você pode alterar o caso de todos os caracteres inseridos em um TextBox controle usado para entrada de senha em letras maiúsculas ou minúsculas para impor uma política para senhas.