Class ValueChangedEventArgs
Contains information about the ValueChanged event.
Inheritance
System.Object
System.EventArgs
ValueChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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. |