CRichEditCtrl::GetLineCount
검색 줄 수를 CRichEditCtrl 개체입니다.
int GetLineCount( ) const;
반환 값
이 줄 수 CRichEditCtrl 개체입니다.
설명
자세한 내용은 EM_GETLINECOUNT 에 있는 Windows SDK.
예제
int nLineLength, nLineIndex, nLineCount = m_myRichEditCtrl.GetLineCount();
CString strText, strLine;
// Dump every line of text of the rich edit control.
for (int i = 0; i < nLineCount; i++)
{
nLineIndex = m_myRichEditCtrl.LineIndex(i);
nLineLength = m_myRichEditCtrl.LineLength(nLineIndex);
m_myRichEditCtrl.GetLine(i, strText.GetBufferSetLength(nLineLength + 1),
nLineLength);
strText.SetAt(nLineLength, _T('\0')); // null terminate
strText.ReleaseBuffer(nLineLength + 1);
TRACE(_T("line %d: '%s'\r\n"), i, strText);
}
요구 사항
헤더: afxcmn.h