IVsTextLineMarker.GetLineBuffer Method

Provides access to an associated text buffer.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

'Déclaration
Function GetLineBuffer ( _
    <OutAttribute> ByRef ppBuffer As IVsTextLines _
) As Integer
'Utilisation
Dim instance As IVsTextLineMarker
Dim ppBuffer As IVsTextLines
Dim returnValue As Integer

returnValue = instance.GetLineBuffer(ppBuffer)
int GetLineBuffer(
    out IVsTextLines ppBuffer
)
int GetLineBuffer(
    [OutAttribute] IVsTextLines^% ppBuffer
)
abstract GetLineBuffer : 
        ppBuffer:IVsTextLines byref -> int 
function GetLineBuffer(
    ppBuffer : IVsTextLines
) : int

Parameters

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsTextLineMarker::GetLineBuffer(
   [out] IVsTextLines **ppBuffer
);

This method can be used to get the underlying IVsTextLines object that contains the marker.

.NET Framework Security

See Also

Reference

IVsTextLineMarker Interface

IVsTextLineMarker Members

Microsoft.VisualStudio.TextManager.Interop Namespace