Class ValueChanged<T>
Event arguments that represent a value that has been changed.
Inherited Members
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 tag. |
T | newValue | The new tag. |
Fields
NewValue
Gets the new name of a property.
Declaration
public readonly T NewValue
Field Value
Type | Description |
---|---|
T |
OldValue
Gets the old name of a property.
Declaration
public readonly T OldValue
Field Value
Type | Description |
---|---|
T |