CharacterCasing Énumération

Définition

Spécifie la casse des caractères figurant dans un contrôle TextBox.

public enum class CharacterCasing
public enum CharacterCasing
type CharacterCasing = 
Public Enum CharacterCasing
Héritage
CharacterCasing

Champs

Lower 2

Convertit tous les caractères en minuscules.

Normal 0

La casse des caractères n'est pas modifiée.

Upper 1

Convertit tous les caractères en majuscules.

Exemples

L’exemple suivant crée un TextBox contrôle utilisé pour accepter un mot de passe. Cet exemple utilise la CharacterCasing propriété pour modifier tous les caractères tapés en majuscules et la MaxLength propriété pour limiter la longueur du mot de passe à huit caractères. Cet exemple utilise également la TextAlign propriété pour centrer le mot de passe dans le TextBox contrôle .

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

Remarques

Utilisez les membres de cette énumération pour définir la valeur de la CharacterCasing propriété du TextBox contrôle .

S’applique à