Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.21 KB

File metadata and controls

44 lines (34 loc) · 1.21 KB
title Toggle Breakpoint Command
description Learn how to use the Toggle Breakpoint command to turn the breakpoint either on or off, depending on its current state, at the current location in the file.
ms.date 11/04/2016
ms.topic reference
f1_keywords
debug.togglebreakpoint
helpviewer_keywords
ToggleBreakpoint command
Debug.ToggleBreakPoint command
Toggle Breakpoint command
author Mikejo5000
ms.author mikejo
ms.subservice general-ide

Toggle Breakpoint Command

Turns the breakpoint either on or off, depending on its current state, at the current location in the file.

Syntax

Debug.ToggleBreakpoint [text]

Arguments

text
Optional. If text is specified, the line is marked as a named breakpoint. Otherwise, the line is marked as an unnamed breakpoint, which is similar to what happens when you press F9.

Example

The following example toggles the current breakpoint.

>Debug.ToggleBreakpoint

See also