| Visual Basic (Declaration) | |
|---|---|
Public NotInheritable Class AlphanumericChar Inherits InputCharBase | |
| C# | |
|---|---|
public sealed class AlphanumericChar : InputCharBase | |
AlphanumericChar is a dispaly character that accepts a alpha-numeric characters (A-Z, a-z and 0-9). Char.IsLetterOrDigit is used to check if a character is alpha-numeric.
Note: Typically there is no need for you to directly create or use display characters. XamMaskedInput will automatically create and manage these objects based on the supplied mask.