Class RadRangeBaseValueChangedEventArgs
EventArgs used when RadRangeBase changes its value.
Inheritance
System.Object
System.EventArgs
RadRangeBaseValueChangedEventArgs
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
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(double? oldValue, double? newValue)
Parameters
System.Nullable<System.Double>
oldValue
|
System.Nullable<System.Double>
newValue
|
Properties
NewValue
Gets or sets the new value.
Declaration
public double? NewValue { get; set; }
Property Value
System.Nullable<System.Double>
The new value. |
OldValue
Gets or sets the old value.
Declaration
public double? OldValue { get; set; }
Property Value
System.Nullable<System.Double>
The old value. |