<< Click to Display Table of Contents >> Navigation: Debugging > Conrolling script execution |
Following methods can be used to control script execution:
/// Execute scipt to next line without tracing into functions
procedure StepOver;
/// Execute scipt to next line with tracing into functions
procedure TraceInto;
/// Stop script execution on ALine line.
procedure RuntoCursor(ALine: integer);
/// Continue script execution if script was paused.
procedure Continue;
/// Break execution
procedure Halt;