| Prev | Next | Script Verbs > script.getBreakpoint |
script.getBreakpoint
| Syntax |
script.getBreakpoint ()
|
| Params |
None required
|
| Action |
Determines whether the current line in the target script window is a breakpoint or not.
|
| Returns |
True if the current line in the target script window is a breakpoint, false if it is not.
|
| Examples |
Open examples.counter. From the Script menu, set a breakpoint on either of the executable lines of code in the script. Now type and execute the following line in the Quick Script window: script.getBreakpoint () » true
You should turn the breakpoint off before closing the script, either with the Script menu's "Toggle Breakpoint" option or by typing script.clearBreakpoint () into the Quick Script window. |
| Notes |
Breakpoints are only in effect when a script is being run in Frontier's debugger. Scripts running normally are not affected by breakpoints. This is an advanced Frontier verb of primary interest to implementers and advanced scripters. It is not necessary to understand it to use Frontier effectively for most tasks.
|
| See Also |
script.clearBreakpoint
|
| Prev | Next | Script Verbs > script.getBreakpoint |