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: Debugger object
Steps into a called function, executing each instruction step by step.
Syntax
object**.StepInto**
Parameters
object
An expression that evaluates to a Debugger object.
Remarks
During program debugging, if the next instruction is a function call, the StepInto method steps inside the function and then executes each instruction step by step. This continues until all instructions have executed or until you call the StepOut method.
Use the StepOver method to execute a called function without stepping through it.
Example
The following example steps into a called function:
Debugger.StepInto