Callback method that will be called when a State has been entered in a StateMachine.

Namespace: yWorks.Support
Assembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2

Syntax

C#
public delegate void StateEnteredHandler(
	State newState,
	State lastState
)
Visual Basic
Public Delegate Sub StateEnteredHandler ( _
	newState As State, _
	lastState As State _
)

Parameters

newState
Type: yWorks.Support..::..State
The new state of the state machine.
lastState
Type: yWorks.Support..::..State
The old state of the state machine.

See Also