IVsTextLines2.GetEolTextEx(LINEDATAEX[], String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a string containing the end-of-line (EOL) marker terminating the text line.
public:
int GetEolTextEx(cli::array <Microsoft::VisualStudio::TextManager::Interop::LINEDATAEX> ^ pld, [Runtime::InteropServices::Out] System::String ^ % pbstrEolText);
int GetEolTextEx(std::Array <Microsoft::VisualStudio::TextManager::Interop::LINEDATAEX> const & pld, [Runtime::InteropServices::Out] std::wstring const & & pbstrEolText);
public int GetEolTextEx (Microsoft.VisualStudio.TextManager.Interop.LINEDATAEX[] pld, out string pbstrEolText);
abstract member GetEolTextEx : Microsoft.VisualStudio.TextManager.Interop.LINEDATAEX[] * string -> int
Public Function GetEolTextEx (pld As LINEDATAEX(), ByRef pbstrEolText As String) As Integer
Parameters
- pld
- LINEDATAEX[]
[in] A LINEDATAEX structure containing the text line.
- pbstrEolText
- String
[out] A string containing the text of the end-of-line (EOL) marker.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
Returns the end-of-line (EOL) marker from the text line contained in pld
. This method extends the IVsTextLines interface.