Class ValueChangeEventArgs<T>
Event arguments for a value that will change.
Inherited Members
Namespace: Cortex.Net.Types
Assembly: Cortex.Net.dll
Syntax
public class ValueChangeEventArgs<T> : ValueEventArgs
Type Parameters
Name | Description |
---|---|
T | The type of the value that will change. |
Properties
| Improve this Doc View SourceCancel
Gets or sets a value indicating whether the change should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Changed
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 |