CEdit::GetFirstVisibleLine
Chamar essa função para determinar a linha visível o nível mais alto em um controle de edição.
int GetFirstVisibleLine( ) const;
Valor de retorno
O índice com base zero da linha visível o nível mais alto. Para controles de edição de linha única, o valor de retorno é 0.
Comentários
Para obter mais informações, consulte EM_GETFIRSTVISIBLELINE em Windows SDK.
Exemplo
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);
}
Requisitos
Cabeçalho: afxwin.h