Click or drag to resize
StaMaIStateMachineTemplateVisitorRegion Method
This method will be called when a Region 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 Region(
	Region region
)

Parameters

region
Type: StaMaRegion
The Region 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 Region. Balanced with this method call there will be a EndRegion() method call after traversing the sub-objects of the Region. Between the Region() and EndRegion() method calls there may be State(), EndState() method calls for the sub-objects of the Region.
Examples
See Also