共用方式為


CEdit::GetLimitText

呼叫此成員函式以取得此物件的文字 CEdit 限制。

UINT GetLimitText( ) const;

傳回值

目前的限制,以位元組為單位),這 CEdit 物件的。

備註

文字限制為最大量文字,以位元組為單位),編輯控制項能夠接受。

注意事項注意事項

此成員函式從 Windows 95 和 Windows NT 4.0 開始可供使用。

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

範例

CString strText(_T("I'm an edit control!"));
UINT nLength = strText.GetLength() * sizeof(TCHAR);

// Want the text limit to be at least the size of the new string.
if (m_myEdit.GetLimitText() < nLength)
   m_myEdit.SetLimitText(nLength);

m_myEdit.SetWindowText(strText);

需求

Header: afxwin.h

請參閱

參考

CEdit 類別

階層架構圖

CEdit::SetLimitText

CEdit::LimitText