Description:
Exiting the script (function) with the possibility of returning a value from this function.
Syntax:
return [value];
value | (optional) Return values. Entering this value in the PROMOTIC system is relevant only for Pmg object methods (only these methods can return value). |
---|
Example1:
Conditional termination of script with no returned value:
Select and copy to clipboard
if (nVar > 0)
return;
Example2:
Conditional termination of script with returned value (in methods code on the "
Methods" tab):
Select and copy to clipboard
if (nVar > 0)
return nVar;