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