| IStateMachineTemplateVisitorState Method |
Namespace: StaMaAssembly: StaMa (in StaMa.dll) Version: 2.3.1.7
Syntax bool State(
State state
)
Function State (
state As State
) As Boolean
bool State(
State^ state
)
abstract State :
state : State -> bool
Parameters
- state
- Type: StaMaState
The State object that is encountered.
Return Value
Type:
Booleantrue 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