CharacterCasing Enumeration

Definition

Gibt die Groß- oder Kleinschreibung in einem TextBox-Steuerelement an.

public enum class CharacterCasing
public enum CharacterCasing
type CharacterCasing = 
Public Enum CharacterCasing
Vererbung
CharacterCasing

Felder

Lower 2

Konvertiert alle Zeichen in Kleinbuchstaben.

Normal 0

Die Groß- oder Kleinschreibung von Zeichen wird nicht geändert.

Upper 1

Konvertiert alle Zeichen in Großbuchstaben.

Beispiele

Im folgenden Beispiel wird ein Steuerelement erstellt, das verwendet wird, um ein TextBox Kennwort zu akzeptieren. In diesem Beispiel wird die Eigenschaft verwendet, um alle Zeichen zu ändern, die CharacterCasing in Großbuchstaben eingegeben werden, und die MaxLength Eigenschaft, um die Kennwortlänge auf acht Zeichen einzuschränken. In diesem Beispiel wird auch die Eigenschaft verwendet, um das TextAlign Kennwort im TextBox Steuerelement zu zentrieren.

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

Hinweise

Verwenden Sie die Elemente dieser Enumeration, um den Wert der CharacterCasing Eigenschaft des TextBox Steuerelements festzulegen.

Gilt für