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

Represents the event data for value change events in a range control. This class provides the old and new values that triggered the event.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public class RadRangeBaseValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsRadRangeBaseValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the RadRangeBaseValueChangedEventArgs class.

C#
public RadRangeBaseValueChangedEventArgs(double? oldValue, double? newValue)
Parameters:oldValuedouble?newValuedouble?

Properties

Gets or sets the new value.

C#
public double? NewValue { get; set; }
Property Value:

The new value.

Gets or sets the old value.

C#
public double? OldValue { get; set; }
Property Value:

The old value.