CEdit::GetLineCount
Chamar esta função para recuperar o número de s linha em múltiplos-linha controle de edição.
int GetLineCount( ) const;
Valor de retorno
Um inteiro contendo o número de s linha em múltiplos-linha controle de edição.Se nenhum texto tiver sido inserido no controle de edição, o valor retornado é 1.
Comentários
GetLineCount só é processada por controles de edição de várias linhas.
Para obter mais informações, consulte EM_GETLINECOUNT in the Windows SDK.
Exemplo
int i, nLineCount = m_myEdit.GetLineCount();
CString strText, strLine;
// Dump every line of text of the edit control.
for (i=0; i < nLineCount; i++)
{
// length of line i:
int len = m_myEdit.LineLength(m_myEdit.LineIndex(i));
m_myEdit.GetLine(i, strText.GetBuffer(len), len);
strText.ReleaseBuffer(len);
strLine.Format(_T("line %d: '%s'\n"), i, strText);
AFXDUMP(strLine);
}
Requisitos
Cabeçalho: afxwin.h