Skip to content

InvokeEvents Enum

When listeners should invoke their events.

C#
public enum InvokeEvents

When any value changed.

C#
Any = 0

When the old value matches a specific value.

C#
FromValue = 1

When the new value matches a specific value.

C#
ToValue = 2

When the old value and new value matches a specific value.

C#
FromValueToValue = 3