Home Page (Debugger) | Overview | How Do I... Topics
The debugger executes the next function, but pauses after the function returns.
The debugger continues until it has completed execution of the return from the function, then pauses.
Caution In general, to avoid very slow execution, you should not step out of a function containing a loop. Instead, you should set a breakpoint at the end of the function, and then choose Go from the Debug menu to execute to the end of the function. Then choose Step Out.