From c8063bca56316ba1228e6bfc35ff2e363b7332be Mon Sep 17 00:00:00 2001 From: XceedBoucherS Date: Thu, 21 Jan 2021 15:26:40 -0500 Subject: [PATCH] Updated MaskedTextBox (markdown) --- MaskedTextBox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MaskedTextBox.md b/MaskedTextBox.md index 07ae479..861ad4a 100644 --- a/MaskedTextBox.md +++ b/MaskedTextBox.md @@ -92,7 +92,7 @@ Mode=TwoWay}"/> | ? | Letter, optional. Restricts input to the ASCII letters a-z and A-Z. This mask element is equivalent to [a-zA-Z](a-zA-Z)? in regular expressions. | | & | Character, required. If the AsciiOnly property is set to true, this element behaves like the "L" element. | | C | Character, optional. Any non-control character. If the AsciiOnly property is set to true, this element behaves like the "?" element. | -| A | Alphanumeric, optional. If the AsciiOnly property is set to true, the only characters it will accept are the ASCII letters a-z and A-Z. | +| A | Alphanumeric, required. If the AsciiOnly property is set to true, the only characters it will accept are the ASCII letters a-z and A-Z. | | a | Alphanumeric, optional. If the AsciiOnly property is set to true, the only characters it will accept are the ASCII letters a-z and A-Z. | | . | Decimal placeholder. The actual display character used will be the decimal symbol appropriate to the format provider, as determined by the control's FormatProvider property. | | , | Thousands placeholder. The actual display character used will be the thousands placeholder appropriate to the format provider, as determined by the control's FormatProvider property. |