Class MaskedEntryValueChangingEventArgs
Represents the arguments for value changing event in SfMaskedEntry.
Inheritance
System.Object
MaskedEntryValueChangingEventArgs
Namespace: Syncfusion.Maui.Inputs
Assembly: Syncfusion.Maui.Inputs.dll
Syntax
public class MaskedEntryValueChangingEventArgs : CancelEventArgs
Constructors
MaskedEntryValueChangingEventArgs()
Declaration
public MaskedEntryValueChangingEventArgs()
Properties
IsValid
Gets or sets the boolean value indicating whether the validation was successful.
Declaration
public bool IsValid { get; set; }
Property Value
Type |
---|
System.Boolean |
NewValue
Gets the current value of the SfMaskedEntry.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Gets the previous value of the SfMaskedEntry.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |