Class
ValueChangedEventArgs

Contains information about the ValueChanged event.

Definition

Namespace:Telerik.Windows.Controls.Calculator

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

cs-api-definition
public class ValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ValueChangedEventArgs(decimal, decimal)

Initializes a new instance of the ValueChangedEventArgs class.

Declaration

cs-api-definition
public ValueChangedEventArgs(decimal oldValue, decimal newValue)

Parameters

oldValue

decimal

The old value.

newValue

decimal

The new value.

Properties

NewValue

Gets the new value.

Declaration

cs-api-definition
public decimal NewValue { get; }

Property Value

decimal

The new value.

OldValue

Gets the old value.

Declaration

cs-api-definition
public decimal OldValue { get; }

Property Value

decimal

The old value.