Class
ValueChangedEventArgs

Contains information about the RadTimeSpanPicker ValueChanged event.

Definition

Namespace:Telerik.Windows.Controls.TimeSpanPicker

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

cs-api-definition
public class ValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ValueChangedEventArgs(TimeSpan?, TimeSpan?)

Initializes a new instance of the ValueChangedEventArgs class.

Declaration

cs-api-definition
public ValueChangedEventArgs(TimeSpan? oldValue, TimeSpan? newValue)

Parameters

oldValue

TimeSpan?

The old value.

newValue

TimeSpan?

The new value.

Properties

NewValue

Gets the new TimeSpan value.

Declaration

cs-api-definition
public TimeSpan? NewValue { get; }

Property Value

TimeSpan?

OldValue

Gets the old TimeSpan value.

Declaration

cs-api-definition
public TimeSpan? OldValue { get; }

Property Value

TimeSpan?