New to Telerik UI for .NET MAUIStart a free 30-day trial

Provides data for the ValueChanged event of a MaskedEntry control. This structure contains information about the value, text, validation state, and mask completion status.

Definition

Namespace:Telerik.Maui.MaskedEntry

Assembly:Telerik.Maui.Core.dll

Syntax:

C#
public struct MaskedEntryValueChangedEventArgs

Inherited Members ValueType.Equals(object)ValueType.GetHashCode()ValueType.ToString()

Fields

Gets a value indicating whether all required inputs have been entered into the formatted string. This property is meaningful only in a Text MaskedEntry.

C#
public readonly bool IsMaskCompleted

Gets a value indicating whether the current value is valid according to the mask and validation rules.

C#
public readonly bool IsValid

Gets the formatted text representation of the value as it appears in the masked entry.

C#
public readonly string Text

Gets the validation error message if the current value is not valid. This property contains a description of why the validation failed.

C#
public readonly string ValidationErrorMessage

Gets the parsed value of the masked entry. The type of this value depends on the mask type (e.g., DateTime for date masks, decimal for numeric masks).

C#
public readonly object Value