Enum MaskCharTypes
The various valid masks supported by the control.
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Shared.Base.dll
Syntax
public enum MaskCharTypes
Fields
| Name | Description |
|---|---|
| maskCharAlphaNumericOptional | Alphanumeric character placeholder (entry optional)'a' |
| maskCharAplhaNumericRequired | Alphanumeric character placeholder 'A' (entry required). For example: a z, A Z, or 0 9. |
| maskCharCharacterOptional | Character or space placeholder (entry optional) 'C' This operates exactly like the & placeholder, and ensures compatibility with Microsoft Access. |
| maskCharCharacterRequired | Character placeholder & Valid values for this placeholder are ANSI characters in the following ranges: 32-126 and 128-255. |
| maskCharDateSep | Date separator '/' The actual character used is the one specified as the date separator in your international settings. This character is treated as a literal for masking purposes. |
| maskCharDecimal | Decimal placeholder '.' The actual character used is the one specified as the decimal placeholder in your international settings. This character is treated as a literal for masking purposes. |
| maskCharDigitOptional | Digit placeholder (entry optional). For example: 0 9. '9' |
| maskCharDigitRequired | Digit placeholder '#'. Numeric and white space |
| maskCharEscape | Escape '' Treat the next character in the mask string as a literal. This allows you to include the '#', &, 'A', and '?' characters in the mask. This character is treated as a literal for masking purposes. |
| maskCharHexaDecimalOptional | Hexadecimal placeholder. For example: A9 EF |
| maskCharHexaDecimalRequired | Hexadecimal placeholder. For example: A9EF |
| maskCharLetterOptional | Letter placeholder. For example: a z or A Z 'y' |
| maskCharLetterRequired | Letter placeholder. For example: a z or A Z '?' |
| maskCharLowercase | Lowercase < Convert all the characters that follow to lowercase. |
| maskCharThousands | Thousands separator ',' The actual character used is the one specified as the thousands separator in your international settings. This character is treated as a literal for masking purposes. |
| maskCharTimeSep | Time separator ':' The actual character used is the one specified as the time separator in your international settings. This character is treated as a literal for masking purposes. |
| maskCharUppercase | Uppercase > Convert all the characters that follow to uppercase. |