Share via


IVsTextStorage2.GetEolTextEx Method

Returns a string containing the end-of-line (EOL) marker terminating the text line.

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

Syntax

'Declaration
Function GetEolTextEx ( _
    pld As LINEDATAEX(), _
    <OutAttribute> ByRef pbstrEolText As String _
) As Integer
int GetEolTextEx(
    LINEDATAEX[] pld,
    out string pbstrEolText
)
int GetEolTextEx(
    [InAttribute] array<LINEDATAEX>^ pld, 
    [OutAttribute] String^% pbstrEolText
)
abstract GetEolTextEx : 
        pld:LINEDATAEX[] * 
        pbstrEolText:string byref -> int
function GetEolTextEx(
    pld : LINEDATAEX[], 
    pbstrEolText : String
) : int

Parameters

  • pbstrEolText
    Type: System.String%

    [out] A string containing the text of the end-of-line (EOL) marker.

Return Value

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

Remarks

GetEolTextEx returns the end-of-line (EOL) marker from the text line contained in pld. This method extends the IVsTextStorage interface.

.NET Framework Security

See Also

Reference

IVsTextStorage2 Interface

Microsoft.VisualStudio.TextManager.Interop Namespace