Table of Contents

Class ValueChangedEventArgs

Namespace
NMF.Expressions
Assembly
NMF.Expressions.dll

Represents the event data when the value of an incremental expression has changed

public class ValueChangedEventArgs : EventArgs
Inheritance
ValueChangedEventArgs
Inherited Members
Extension Methods

Constructors

ValueChangedEventArgs(object, object)

Creates a valuechanged event for the given old value and new value

public ValueChangedEventArgs(object oldValue, object newValue)

Parameters

oldValue object

The old value

newValue object

The new value

Properties

NewValue

The new value

public object NewValue { get; }

Property Value

object

OldValue

The old value

public object OldValue { get; }

Property Value

object