Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines the topmost visible line in this CRichEditCtrl object.
int GetFirstVisibleLine( ) const;
Return Value
Zero-based index of the uppermost visible line in this CRichEditCtrl object.
Remarks
For more information, see EM_GETFIRSTVISIBLELINE in the Windows SDK.
Example
int nFirstVisible = m_myRichEditCtrl.GetFirstVisibleLine();
// Scroll the rich edit control so that the first visible line
// is the first line of text.
if (nFirstVisible > 0)
{
m_myRichEditCtrl.LineScroll(-nFirstVisible, 0);
}
Requirements
Header: afxcmn.h