IVsTextLayer2.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 text line's end-of-line (EOL) marker.
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.
- pbstrEolText
- String
[out] A string containing the text of the end-of-line marker.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
Returns the end-of-line marker from the text line contained in pld
. This method extends the IVsTextLayer interface.