Skip to main content
Version: v6.5.0

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 Laiye, conditional branch, jump out and return if a=Laiye")
a = "Laiye"
If a = "Laiye"
Return a
End If