Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Home Page (Objects) | Overview | FAQ | Reference
Applies to: Breakpoint object
Gets the location of a breakpoint.
Syntax
object**.Location**
Parameters
object
An expression that evaluates to a Breakpoint object.
Remarks
The Location property has the String type and applies only to location breakpoints.
The location is a line number (expressed as a string) or the name of a function or symbol.
Example
The following example gets the location of the first breakpoint in the Breakpoints collection:
Dim bps
Set bps = Debugger.Breakpoints
bps.Item(1).Location