Class RadRangeBaseValueChangedEventArgs
EventArgs used when RadRangeBase changes its value.
Inheritance
System.Object
RadRangeBaseValueChangedEventArgs
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RadRangeBaseValueChangedEventArgs : EventArgs
Constructors
RadRangeBaseValueChangedEventArgs(Nullable<Double>, Nullable<Double>)
Initializes a new instance of the RadRangeBaseValueChangedEventArgs class.
Declaration
public RadRangeBaseValueChangedEventArgs(Nullable<double> oldValue, Nullable<double> newValue)
Parameters
System.Nullable<System.Double>
oldValue
|
System.Nullable<System.Double>
newValue
|
Properties
NewValue
Gets or sets the new value.
Declaration
public Nullable<double> NewValue { get; set; }
Property Value
System.Nullable<System.Double>
The new value. |
OldValue
Gets or sets the old value.
Declaration
public Nullable<double> OldValue { get; set; }
Property Value
System.Nullable<System.Double>
The old value. |