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
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