Edit

Share via


STEPKIND

Specifies the step kind for stepping.

Syntax

public enum enum_STEPKIND { 
   STEP_INTO      = 0,
   STEP_OVER      = 1,
   STEP_OUT       = 2,
   STEP_BACKWARDS = 3
};

Fields

STEP_INTO
Steps into a function.

STEP_OVER
Steps over a function.

STEP_OUT
Steps out of a function.

STEP_BACKWARDS
Steps backward into a function.

Remarks

Passed as an argument to the Step method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also