Class
ValueChangedEventArgs<TValue>

Represents the event arguments for a property change event.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Type Parameters:

TValue

Specifies the value type of the changed property.

Syntax:

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

Inheritance: objectEventArgsValueChangedEventArgs<TValue>

Inherited Members EventArgs.Empty

Constructors

ValueChangedEventArgs(TValue, TValue)

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

Declaration

cs-api-definition
public ValueChangedEventArgs(TValue previousValue, TValue newValue)

Parameters

previousValue

TValue

Specifies the previous value of the property.

newValue

TValue

Specifies the new value of the property.

Properties

NewValue

Gets the new value of the property.

Declaration

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

Property Value

TValue

PreviousValue

Gets the previous value of the property.

Declaration

cs-api-definition
public TValue PreviousValue { get; }

Property Value

TValue