Jump-Out-and-Return
Command Description
Jump out of the process block and output
Command Prototype
Return value
Parameter Description
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
value | True | expression | retValue | The value returned to the process view |
Demo
TracePrint("------------------------------------------------ Jump out and return--------- ----------------------------------")
//-------------------------------------------------------------------------------
//[Remarks] Jump out of the process block and return the value.
TracePrint("Let a be UiBot, conditional branch, jump out and return if a=UiBot")
a = "UiBot"
If a = "UiBot"
Return a
End If