Class MaskedEntryValueChangedEventArgs
Provides data for the ValueChanged event of a MaskedEntry control. This structure contains information about the value, text, validation state, and mask completion status.
Inheritance
Namespace: Telerik.Maui.MaskedEntry
Assembly: Telerik.Maui.Core.dll
Syntax
public sealed class MaskedEntryValueChangedEventArgs : ValueType
Fields
IsMaskCompleted
Gets a value indicating whether all required inputs have been entered into the formatted string. This property is meaningful only in a Text MaskedEntry.
Declaration
public readonly bool IsMaskCompleted
Field Value
System.Boolean
|
IsValid
Gets a value indicating whether the current value is valid according to the mask and validation rules.
Declaration
public readonly bool IsValid
Field Value
System.Boolean
|
Text
Gets the formatted text representation of the value as it appears in the masked entry.
Declaration
public readonly string Text
Field Value
System.String
|
ValidationErrorMessage
Gets the validation error message if the current value is not valid. This property contains a description of why the validation failed.
Declaration
public readonly string ValidationErrorMessage
Field Value
System.String
|
Value
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).
Declaration
public readonly object Value
Field Value
System.Object
|