NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISymbolDocument.GetSourceRange

Gets the embedded document source for the specified range.

[Visual Basic]
Function GetSourceRange( _
   ByVal startLine As Integer, _
   ByVal startColumn As Integer, _
   ByVal endLine As Integer, _
   ByVal endColumn As Integer _
) As Byte ()
[C#]
byte[] GetSourceRange(
   int startLine,
   int startColumn,
   int endLine,
   int endColumn
);
[C++]
unsigned char* GetSourceRange(
   int startLine,
   int startColumn,
   int endLine,
   int endColumn
) [] = 0;
[JScript]
function GetSourceRange(
   startLine : int,
   startColumn : int,
   endLine : int,
   endColumn : int
) : Byte[];

Parameters

startLine
The starting line in the current document.
startColumn
The starting column in the current document.
endLine
The ending line in the current document.
endColumn
The ending column in the current document.

Return Value

The document source for the specified range.

See Also

ISymbolDocument Interface | ISymbolDocument Members | System.Diagnostics.SymbolStore Namespace