Class
RadRangeBaseValueChangedEventArgs

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:

cs-api-definition
public class RadRangeBaseValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsRadRangeBaseValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

RadRangeBaseValueChangedEventArgs(double?, double?)

Initializes a new instance of the RadRangeBaseValueChangedEventArgs class.

Declaration

cs-api-definition
public RadRangeBaseValueChangedEventArgs(double? oldValue, double? newValue)

Parameters

oldValue

double?

newValue

double?

Properties

NewValue

Gets or sets the new value.

Declaration

cs-api-definition
public double? NewValue { get; set; }

Property Value

double?

The new value.

OldValue

Gets or sets the old value.

Declaration

cs-api-definition
public double? OldValue { get; set; }

Property Value

double?

The old value.