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