Class MaskedEntryValueChangingEventArgs
Inheritance
Namespace: Telerik.Maui.MaskedEntry
Assembly: Telerik.Maui.Core.dll
Syntax
public class MaskedEntryValueChangingEventArgs : EventArgs, IMaskValueChangingContext
Constructors
MaskedEntryValueChangingEventArgs()
Declaration
public MaskedEntryValueChangingEventArgs()
Properties
Cancel
Indicates whether changing the Value should be cancelled.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
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 bool IsMaskCompleted { get; }
Property Value
System.Boolean
|
IsValid
Indicates whether the NewValue in considered valid according to internal (mask, regex) or external (appplication) validation.
Declaration
public bool IsValid { get; set; }
Property Value
System.Boolean
|
NewValue
Gets or sets the value that will be given to the UI masked view. The original value of this property was processed by the internal mask engine, but the user is allowed to change this value if needed.
Declaration
public object NewValue { get; set; }
Property Value
System.Object
|
ValidationErrors
Declaration
public IList<string> ValidationErrors { get; }
Property Value
System.Collections.Generic.IList<System.String>
|
ValidationMessage
Gets or sets a ValidationMessage for the end user.
Declaration
public string ValidationMessage { get; set; }
Property Value
System.String
|