Class ValueChangedEventArgs
Contains information about the ValueChanged event.
Inheritance
System.Object
ValueChangedEventArgs
Namespace: Telerik.Windows.Controls.Calculator
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(Decimal, Decimal)
Initializes a new instance of the ValueChangedEventArgs class.
Declaration
public ValueChangedEventArgs(Decimal oldValue, Decimal newValue)
Parameters
System.Decimal
oldValue
The old value. |
System.Decimal
newValue
The new value. |
Properties
NewValue
Gets the new value.
Declaration
public Decimal NewValue { get; }
Property Value
System.Decimal
The new value. |
OldValue
Gets the old value.
Declaration
public Decimal OldValue { get; }
Property Value
System.Decimal
The old value. |