SET BREAKPOINT

From Lianjapedia
Jump to: navigation, search

Purpose

Determines whether debugger breakpoints are enabled or disabled

Syntax

SET BREAKPOINT ON | OFF | (<expL>)

See Also

DEBUG, Debugger (Lianja/VFP), DEBUGOUT, ERRNO(), ERROR(), JavaScript Debugger, MESSAGE(), Python Debugger, SET DEBUG, SET DEBUGCOMPILE, SET DEBUGTRACE, SET DEBUGOUT, SET ERRORLOGGING, STRERROR(), Troubleshooter

Description

With SET BREAKPOINT ON, breakpoints are enabled in the Troubleshooter debugger tabs. With SET BREAKPOINT OFF, breakpoints are disabled. By default, SET BREAKPOINT is ON.

Breakpoints can also be disabled/enabled using the toggle icon in the actionbar in the Troubleshooter debugger tabs.

Example

// Disable breakpoints
set breakpoint off
// Enable breakpoints
set breakpoint on