TextBox.CharacterCasing プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
TextBox コントロールで入力された文字の大文字と小文字を変更するかどうかを取得または設定します。
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
プロパティ値
CharacterCasing コントロールで大文字と小文字を変更するかどうかを指定する TextBox 列挙値の 1 つ。 既定値は、CharacterCasing.Normal
です。
例外
列挙体の有効値の範囲内にない値が、プロパティに代入されました。
例
次のコード例では、パスワードを TextBox 受け入れるために使用されるコントロールを作成します。 この例では、プロパティを CharacterCasing 使用して、入力されたすべての文字を小文字に変更し、プロパティを MaxLength 使用してパスワードの長さを 8 文字に制限します。 この例では、プロパティを TextAlign 使用して、コントロール内のパスワードを中央揃え TextBox します。
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
注釈
このプロパティを CharacterCasing 使用すると、アプリケーションで必要に応じて文字の大文字と小文字を変更できます。 たとえば、パスワード入力に使用するコントロールに TextBox 入力されたすべての文字の大文字と小文字を大文字または小文字に変更して、パスワードのポリシーを適用できます。