Class ValueChangedEventArgs<T>
Event arguments for a value that has changed.
Inherited Members
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ValueChangedEventArgs<T> : ValueEventArgs
Type Parameters
Name | Description |
---|---|
T | The type of the value that has changed. |
Properties
| Improve this Doc View SourceNewValue
Gets or sets new value.
Declaration
public T NewValue { get; set; }
Property Value
Type | Description |
---|---|
T |
OldValue
Gets or sets old value.
Declaration
public T OldValue { get; set; }
Property Value
Type | Description |
---|---|
T |