Classification
OTL Syntax
Description
Normally, a procedure is terminated after the last activity. The current procedure passing the control to the calling procedure. The OTX return activity can however the procedure at any point within be terminated prematurely. The following activities are no longer carried out.
|
|
|
Important: Please note the special behavior within an Parallel activity.
|
OTL Examples
String stringVar1;
Boolean Condition1 = true;
if (Condition1)
{
return;
}
else
{
}
stringVar1 = "I will never happen because of the Return";
See also
Continue
Break
Throw
TerminateLanes