IVsLanguageDebugInfo::IsMappedLocation Method (IVsTextBuffer^, Int32, Int32)
Visual Studio 2015
Returns whether the location contains code that is mapped to another document, for example, client-side script code.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Parameters
- pBuffer
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsTextBuffer^
[in] The IVsTextBuffer interface that contains the location in question.
- iLine
-
Type:
System::Int32
[in] Integer containing the line index.
- iCol
-
Type:
System::Int32
[in] Integer containing the column index.
Return Value
Type: System::Int32If the method succeeds, returns S_OK indicating the location contains mapped code. If the location does not contain mapped code, returns S_FALSE. Otherwise, returns an error code.
From textmgr.idl:
HRESULT IVsLanguageDebugInfo::IsMappedLocation( [in] IVsTextBuffer *pBuffer, [in] long iLine, [in] long iCol );
Return whether the location contains code that is mapped to another document, for example client-side script code.
Show: