CEdit::GetFirstVisibleLine
呼叫此函式以判斷在編輯控制項的最頂端可見行。
int GetFirstVisibleLine( ) const;
傳回值
最上層的可見行的以零起始的索引。 對於單行編輯控制項,則傳回值為 0。
備註
如需詳細資訊,請參閱 Windows SDK的 EM_GETFIRSTVISIBLELINE 。
範例
int nFirstVisible = m_myEdit.GetFirstVisibleLine();
// Scroll the edit control so that the first visible line
// is the first line of text.
if (nFirstVisible > 0)
{
m_myEdit.LineScroll(-nFirstVisible, 0);
}
需求
Header: afxwin.h