Skip to main content

Jump-Out-and-Return

Command Description

Jump out of the process block and output

Command Prototype

Return value

Parameter Description

ParameterRequiredTypeDefaultDescription
valueTrueexpressionretValueThe 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