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

Definition

Namespace:Telerik.Maui.MaskedEntry

Assembly:Telerik.Maui.Core.dll

Syntax:

cs-api-definition
public struct MaskedEntryValueChangedEventArgs

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

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

cs-api-definition
public readonly bool IsMaskCompleted

Field Value

bool

IsValid

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

Declaration

cs-api-definition
public readonly bool IsValid

Field Value

bool

Text

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

Declaration

cs-api-definition
public readonly string Text

Field Value

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

cs-api-definition
public readonly string ValidationErrorMessage

Field Value

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

cs-api-definition
public readonly object Value

Field Value

object