CharacterCasing Enumeração

Definição

Especifica o caso de caracteres em um controle TextBox.

public enum class CharacterCasing
public enum CharacterCasing
type CharacterCasing = 
Public Enum CharacterCasing
Herança
CharacterCasing

Campos

Lower 2

Converte todos os caracteres para minúsculo.

Normal 0

A capitalização de caracteres é deixada inalterada.

Upper 1

Converte todos os caracteres para maiúsculo.

Exemplos

O exemplo a seguir cria um TextBox controle usado para aceitar uma senha. Este exemplo usa a CharacterCasing propriedade para alterar todos os caracteres digitado para maiú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

Use os membros dessa enumeração para definir o valor da CharacterCasing propriedade do TextBox controle.

Aplica-se a