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:

Telerik Maui Ninja image

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 a string.
  • Numeric—Used for handling numeric user input. The Value property can be double or decimal.
  • 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 a string.
  • IP—Used for handling and validating an IP Address input. The Value property is string.
  • Email—Used for handling and validating an email input. The Value property is string.

The Value can also be null for all mask types.

For the MaskedEntry Mask Types examples, go to the SDKBrowser Demo Application and navigate to MaskedEntry -> Mask Types category.

See Also

In this article