IVsTextBufferCoordinator.SetBuffers Method
Establishes the primary and secondary buffers that are to be managed by the buffer coordinator object.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
Syntax
'Declaration
Function SetBuffers ( _
pPrimaryBuffer As IVsTextLines, _
pSecondaryBuffer As IVsTextLines _
) As Integer
int SetBuffers(
IVsTextLines pPrimaryBuffer,
IVsTextLines pSecondaryBuffer
)
int SetBuffers(
[InAttribute] IVsTextLines^ pPrimaryBuffer,
[InAttribute] IVsTextLines^ pSecondaryBuffer
)
abstract SetBuffers :
pPrimaryBuffer:IVsTextLines *
pSecondaryBuffer:IVsTextLines -> int
function SetBuffers(
pPrimaryBuffer : IVsTextLines,
pSecondaryBuffer : IVsTextLines
) : int
Parameters
pPrimaryBuffer
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextLines[in] An IVsTextLines object representing the primary buffer.
pSecondaryBuffer
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextLines[in] An IVsTextLines object representing the secondary buffer.
Return Value
Type: System.Int32
If successful, returns S_OK; otherwise, returns an error code.
Remarks
COM Signature
From singlefileeditor.idl:
HRESULT SetBuffers(
[in] IVsTextLines *pPrimaryBuffer,
[in] IVsTextLines *pSecondaryBuffer
);
.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.