CRichEditCtrl::GetLimitText

获取此 CRichEditCtrl 对象的文本限制。

long GetLimitText( ) const;

返回值

当前文本限制,在字节,此 CRichEditCtrl 对象的。

备注

文本限制是最大红色文本,如字节,rich edit控件可以接受。

有关更多信息,请参见 Windows SDK的 EM_GETLIMITTEXT

示例

// The new text of the rich edit control.
LPCTSTR lpszmyString = _T("Here's some text in our rich edit control!");
long nLength = (long)_tcslen(lpszmyString);

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

m_myRichEditCtrl.SetWindowText(lpszmyString);   

要求

Header: afxcmn.h

请参见

参考

CRichEditCtrl选件类

层次结构图

CRichEditCtrl::LimitText