Mask Types in .NET MAUI MaskedEntry
The MaskedEntry provides separate masked entry controls which can handle different types of user input. They all inherit from a common RadMaskedEntryBase
class.
The available masks and their purpose are listed below:
The Mask Types is part of Telerik UI for .NET MAUI, the most comprehensive UI suite for .NET MAUI! To try it out, sign up for a free 30-day trial and kickstart your cross-platform app development today.
-
Text—Used for handling all types of text user input. The
Value
property is astring
. -
Numeric—Used for handling numeric user input. The
Value
property can bedouble
ordecimal
. -
Regex—Used for handling and validating a standard (alphanumeric) user input against a regular expression. Provides errors if the regex is not matched. The
Value
property is astring
. -
IP—Used for handling and validating an IP Address input. The
Value
property isstring
. - Email—Used for handling and validating an email input. The Value property is string.
The
Value
can also benull
for all mask types.
For the MaskedEntry Mask Types examples, go to the SDKBrowser Demo Application and navigate to MaskedEntry -> Mask Types category.