Class
ValueChangedEventArgs<T>

This class contains information about events which occur when a given value is changed. Here the old and the new values are exposed.

Definition

Namespace:Telerik.UI.Xaml.Controls.Input

Assembly:Telerik.WinUI.Controls.dll

Type Parameters:

T

Syntax:

cs-api-definition
public class ValueChangedEventArgs<T> : EventArgs

Inheritance: objectEventArgsValueChangedEventArgs<T>

Inherited Members EventArgs.Empty

Constructors

ValueChangedEventArgs(T, T)

Initializes a new instance of the ValueChangedEventArgs<T> class.

Declaration

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

Parameters

oldValue

T

The old value.

newValue

T

The new value.

Properties

NewValue

Gets an instance of the DateTime struct that represents the new value.

Declaration

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

Property Value

T

OldValue

Gets an instance of the DateTime struct that represents the previous value.

Declaration

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

Property Value

T