StepOver Method

Home Page (Objects)OverviewFAQReference

Applies to: Debugger object

Executes a called function without stepping through it.

Syntax

object.StepOver

Parameters

object

An expression that evaluates to a Debugger object.

Remarks

During program debugging, use the StepInto method to step through instructions in a called function. Use the StepOut method to stop stepping through the instructions, to execute the remainder of the function, to exit the function, and then to break at the statement after the function call.

Use the StepOver method to execute a called function without stepping through it.

Example

The following example executes a called function without stepping through it:

Debugger.StepOver