DkmTextSpan(Int32, Int32, Int32, Int32) Constructor

Definition

Initialize a new DkmTextSpan value.

public:
 DkmTextSpan(int StartLine, int EndLine, int StartColumn, int EndColumn);
public:
 DkmTextSpan(int StartLine, int EndLine, int StartColumn, int EndColumn);
 DkmTextSpan(int StartLine, int EndLine, int StartColumn, int EndColumn);
public DkmTextSpan (int StartLine, int EndLine, int StartColumn, int EndColumn);
new Microsoft.VisualStudio.Debugger.Symbols.DkmTextSpan : int * int * int * int -> Microsoft.VisualStudio.Debugger.Symbols.DkmTextSpan
Public Sub New (StartLine As Integer, EndLine As Integer, StartColumn As Integer, EndColumn As Integer)

Parameters

StartLine
Int32

[In] 1-based integer for the starting source line.

EndLine
Int32

[In] 1-based integer for the ending source column.

StartColumn
Int32

[In] 1-based integer for the starting source column. If column information is missing (ex: language service doesn't support it), this value should be set to 0.

EndColumn
Int32

[In] 1-based integer for the ending source column. If column information is missing (ex: language service doesn't support it), this value should be set to 0.

Applies to