共用方式為


CEdit::GetLineCount

呼叫此函式以取得行數多行編輯控制項的。

int GetLineCount( ) const;

傳回值

包含解說目在多行編輯控制項。 如果未輸入文字編輯控制項,則傳回值為 1。

備註

GetLineCount 由多行編輯控制項只會處理。

如需詳細資訊,請參閱 Windows SDK的 EM_GETLINECOUNT

範例

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);
}

需求

Header: afxwin.h

請參閱

參考

CEdit 類別

階層架構圖