CEdit::GetFirstVisibleLine
telefonar Esta função para determinar a linha superior visível em um controle de edição.
int GetFirstVisibleLine( ) const;
Valor de retorno
O índice baseado em zero da linha superior visível.Para controles de edição de linha única, o valor retornado é 0.
Comentários
Para obter mais informações, consulte EM_GETFIRSTVISIBLELINE in the 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