EO.Web MaskedEdit supports the following mask elements:
Elements |
Remarks |
0 |
Digit, required. This element will accept any single digit between 0 and 9. |
9 |
Digit or space, optional. |
# |
Digit or space, optional. Plus (+) and minus (-) signs are also allowed.
|
L |
Letter, required. Restricts input to the ASCII letters a-z and A-Z. This mask element is equivalent to [a-zA-Z] in regular expressions. |
? |
Letter, optional. Restricts input to the ASCII letters a-z and A-Z. This mask element is equivalent to [a-zA-Z]? in regular expressions.
|
A |
Alphanumeric, required.
|
a |
Alphanumeric, optional.
|
< |
Shift down. Converts all characters that follow to lowercase.
|
> |
Shift up. Converts all characters that follow to uppercase.
|
- |
Right align. Align the input to the right. If used, this element
must be the first mask element. The default alignment is towards the left.
|
| |
Disable a previous shift up or shift down.
|
\ |
Escape. Escapes a mask character, turning it into a literal. "\\" is the escape sequence for a backslash. |
All other characters |
Literals. All non-mask elements will appear as themselves within MaskedEdit. Literals always occupy a static position in the mask at run time, and cannot be moved or deleted by the user.
|