Class ObjectChangeEventArgs<T>
Event arguments for a value on an object that will change.
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ObjectChangeEventArgs<T> : ObjectCancellableEventArgs
Type Parameters
Name | Description |
---|---|
T | The type of the value that will change. |
Properties
| Improve this Doc View SourceChanged
Gets a value indicating whether the value has been changed by an event handler.
Declaration
public bool Changed { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
NewValue
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 |