Class ValueChanged<T>
Event arguments that represent a changed value.
Namespace: Evergine.Framework.Helpers
Assembly: Evergine.Framework.dll
Syntax
public sealed class ValueChanged<T> : EventArgs
Type Parameters
Name | Description |
---|---|
T | The value type. |
Constructors
ValueChanged(T, T)
Initializes a new instance of the ValueChanged<T> class.
Declaration
public ValueChanged(T oldValue, T newValue)
Parameters
Type | Name | Description |
---|---|---|
T | oldValue | The old value. |
T | newValue | The new value. |
Fields
NewValue
Gets the new name of the property.
Declaration
public readonly T NewValue
Field Value
Type | Description |
---|---|
T |
OldValue
Gets the previous name of a property.
Declaration
public readonly T OldValue
Field Value
Type | Description |
---|---|
T |