Abort |
Top Previous Next |
Prototype
Abort
Description
It ends the execution of the script.
Parameters
None.
Returned value
None.
Notes
None.
Example
//It asks for confirm to end the job If ShowConfirm ('Stop elaboration ?') then Begin //It shows a log message ApplicationLog('User stops the elaboration');
//It stops the job Abort; end; |