ValueChangedEventArgs<T> Members

Namespace: IPS7Lnk.Advanced
Assemblies: IPS7LnkNet.Advanced.dll, IPS7LnkNet.Advanced.dll
The ValueChangedEventArgs<T> type exposes the following members.

ValueChangedEventArgs(T, T)

Initializes a new instance of the ValueChangedEventArgs´1 class using the oldValue and newValue specified.

C#

public ValueChangedEventArgs(T oldValue, T newValue)


Parameters

oldValue T

The old value before newValue has been applied.

newValue T

The new value which substitutes the oldValue.

NewValue

Gets the new value which substitutes the OldValue.

C#

public T NewValue { get; }


Property Value

T

The new value of T.

OldValue

Gets the old value before NewValue has been applied.

C#

public T OldValue { get; }


Property Value

T

The old value of T.