Class ValueChangedEventArgs
Represents the event data when the value of an incremental expression has changed
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
| Edit this page View SourceValueChangedEventArgs(object, object)
Creates a valuechanged event for the given old value and new value
Declaration
public ValueChangedEventArgs(object oldValue, object newValue)
Parameters
Type | Name | Description |
---|---|---|
object | oldValue | The old value |
object | newValue | The new value |
Properties
| Edit this page View SourceNewValue
The new value
Declaration
public object NewValue { get; }
Property Value
Type | Description |
---|---|
object |
OldValue
The old value
Declaration
public object OldValue { get; }
Property Value
Type | Description |
---|---|
object |