Freigeben über


CRichEditCtrl::GetFirstVisibleLine

int GetFirstVisibleLine( ) const;

Return Value

Zero-based index of the uppermost visible line in this CRichEditCtrl object.

Remarks

Call this function to determine the topmost visible line in this CRichEditCtrl object.

For more information, see in the Win32 documentation.

Example

// The pointer to my rich edit control.
extern CRichEditCtrl* pmyRichEditCtrl;

int nFirstVisible = pmyRichEditCtrl->GetFirstVisibleLine();

// Scroll the rich edit control so that the first visible line
// is the first line of text.
if (nFirstVisible > 0)
{
   pmyRichEditCtrl->LineScroll(-nFirstVisible, 0);
}

CRichEditCtrl OverviewClass MembersHierarchy Chart

See Also   CRichEditCtrl::GetLine, CRichEditCtrl::GetLineCount