Maps the specified position in the secondary buffer to a position in the primary buffer.
Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
Syntax
声明
Function MapSecondaryToPrimarySpan ( _
    tsSecondary As TextSpan, _
    <OutAttribute> ptsPrimary As TextSpan() _
) As Integer
用法
Dim instance As IVsTextBufferCoordinator
Dim tsSecondary As TextSpan
Dim ptsPrimary As TextSpan()
Dim returnValue As Integer
returnValue = instance.MapSecondaryToPrimarySpan(tsSecondary, _
    ptsPrimary)
int MapSecondaryToPrimarySpan(
    TextSpan tsSecondary,
    TextSpan[] ptsPrimary
)
int MapSecondaryToPrimarySpan(
    [InAttribute] TextSpan tsSecondary, 
    [OutAttribute] array<TextSpan>^ ptsPrimary
)
abstract MapSecondaryToPrimarySpan : 
        tsSecondary:TextSpan * 
        ptsPrimary:TextSpan[] byref -> int 
function MapSecondaryToPrimarySpan(
    tsSecondary : TextSpan, 
    ptsPrimary : TextSpan[]
) : int
Parameters
- tsSecondary
 Type: Microsoft.VisualStudio.TextManager.Interop.TextSpan
 [in] A TextSpan object describing a position in the secondary buffer.
- ptsPrimary
 Type: array<Microsoft.VisualStudio.TextManager.Interop.TextSpan[]
 [in, out] A TextSpan object that is filled in with the corresponding position in the primary buffer.
Return Value
Type: System.Int32
If successful, returns S_OK; otherwise, returns an error code.
Remarks
COM Signature
From singlefileeditor.idl:
HRESULT MapSecondaryToPrimarySpan(
   [in]  TextSpan  tsSecondary,
   [out] TextSpan *ptsPrimary
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
IVsTextBufferCoordinator Interface