CRichEditCtrl::GetLimitText
Obtém o limite de texto para este CRichEditCtrl objeto.
long GetLimitText( ) const;
Valor de retorno
O limite corrente de texto, em bytes, para este CRichEditCtrl objeto.
Comentários
O limite de texto é a quantidade máxima de texto, em bytes, o controle rich edição pode aceitar.
Para obter mais informações, consulte EM_GETLIMITTEXT in the Windows SDK.
Exemplo
// 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);
Requisitos
Cabeçalho: afxcmn.h