Description:
Exiting the script (function) with the possibility of returning a value from this function.
Syntax:
return [value];
value |
(optional) Return value. |
Example1:
Conditional termination of the script with no returned value:
Select and copy to clipboard
if (nVar > 0)
{
return;
}
Example2:
Conditional termination of the script with returned value (in methods code on the "
Methods" tab):
Select and copy to clipboard
if (nVar > 0)
{
return nVar;
}