CRichEditCtrl::GetFirstVisibleLine
判斷在這個 CRichEditCtrl 物件的最頂端可見行。
int GetFirstVisibleLine( ) const;
傳回值
最高的可見行的以零起始的索引。 CRichEditCtrl 這個物件的。
備註
如需詳細資訊,請參閱 Windows SDK的 EM_GETFIRSTVISIBLELINE 。
範例
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);
}
需求
Header: afxcmn.h