IVsTextLayer::GetLastLineIndex Method (Int32, Int32)

 

Returns the length and index of the last line.

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

int GetLastLineIndex(
	[OutAttribute] int% piLine,
	[OutAttribute] int% piIndex
)

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::Int32

If 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

Return to top
Show: