Class RadValueChangedEventArgs<TValue>
Represents the event arguments for a property change event.
Inheritance
System.Object
RadValueChangedEventArgs<TValue>
Namespace: Telerik.XamarinForms.Common
Assembly: Telerik.XamarinForms.Common.dll
Syntax
public class RadValueChangedEventArgs<TValue> : EventArgs
Type Parameters
TValue
Specifies the value type of the changed property. |
Constructors
RadValueChangedEventArgs(TValue, TValue)
Initializes a new instance of the RadValueChangedEventArgs<TValue> class.
Declaration
public RadValueChangedEventArgs(TValue oldValue, TValue newValue)
Parameters
TValue
oldValue
Specifies the old value of the property. |
TValue
newValue
Specifies the new value of the property. |
Properties
NewValue
Gets the new value of the property.
Declaration
public TValue NewValue { get; }
Property Value
TValue
|
OldValue
Gets the old value of the property.
Declaration
public TValue OldValue { get; }
Property Value
TValue
|