Click or drag to resize
StaMaIStateMachineTemplateVisitorState Method
This method will be called when a State object is encountered while traversing a StateMachineTemplate with the PassThrough() method.

Namespace: StaMa
Assembly: StaMa (in StaMa.dll) Version: 2.3.1.7
Syntax
bool State(
	State state
)

Parameters

state
Type: StaMaState
The State object that is encountered.

Return Value

Type: Boolean
true if traversal shall continue; false to stop traversal.
Remarks
This method will be called before traversing the sub-objects of the State. Balanced with this method call there will be a EndState() method call after traversing the sub-objects of the State. Between the State() and EndState() method calls there may be Transition(), Region() and EndRegion() method calls for the sub-objects of the State.
Examples
See Also