IVsTextLayer::GetLastLineIndex Method (Int32, Int32)
Visual Studio 2015
Returns the length and index of the last line.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Parameters
- piLine
-
Type:
System::Int32
[out] The length of the last line.
- piIndex
-
Type:
System::Int32
[out] The index of the last line.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsTextLayer::GetLastLineIndex( [out] long *piLine, [out] long *piIndex );
GetLastLineIndex is a shortcut for the frequent pattern of calling GetLineCount & then GetLengthOfLine on the line
Show: