Class ValueChangedEventArgs
Value changed event argument class
Inheritance
System.Object
ValueChangedEventArgs
Namespace: Syncfusion.WinForms.Input.Events
Assembly: Syncfusion.SfInput.WinForms.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(Nullable<Double>, Nullable<Double>)
Initializes a new instance of the ValueChangedEventArgs class.
Declaration
public ValueChangedEventArgs(Nullable<double> old, Nullable<double> newValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Nullable<System.Double> | old | Old value |
| System.Nullable<System.Double> | newValue | Changed new value |
Properties
NewValue
Gets new value of SfNumericTextBox.
Declaration
public Nullable<double> NewValue { get; }
Property Value
| Type |
|---|
| System.Nullable<System.Double> |
OldValue
Gets old value of SfNumericTextBox.
Declaration
public Nullable<double> OldValue { get; }
Property Value
| Type |
|---|
| System.Nullable<System.Double> |