New to Telerik UI for WPFStart a free 30-day trial

Contains information about the RadTimeSpanPicker ValueChanged event.

Definition

Namespace:Telerik.Windows.Controls.TimeSpanPicker

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

C#
public class ValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ValueChangedEventArgs class.

C#
public ValueChangedEventArgs(TimeSpan? oldValue, TimeSpan? newValue)
Parameters:oldValueTimeSpan?

The old value.

newValueTimeSpan?

The new value.

Properties

Gets the new TimeSpan value.

C#
public TimeSpan? NewValue { get; }

Gets the old TimeSpan value.

C#
public TimeSpan? OldValue { get; }