Class MaskedTextBoxValueChangingEventArgs
Represents the arguments for value changing event in SfMaskedTextBox.
Inheritance
System.Object
MaskedTextBoxValueChangingEventArgs
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public class MaskedTextBoxValueChangingEventArgs : CancelEventArgs
Constructors
MaskedTextBoxValueChangingEventArgs()
Declaration
public MaskedTextBoxValueChangingEventArgs()
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 SfMaskedTextBox.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Gets the previous value of the SfMaskedTextBox.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |