Compartilhar via


CRichEditCtrl::GetLimitText

Obtém o limite de texto para este objeto de CRichEditCtrl .

long GetLimitText( ) const;

Valor de retorno

O limite de texto atual, em bytes, para este objeto de CRichEditCtrl .

Comentários

O limite de texto é a quantidade máxima de texto, em bytes, o controle de edição pode aceitar rico.

Para obter mais informações, consulte EM_GETLIMITTEXT em 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

Consulte também

Referência

Classe CRichEditCtrl

Gráfico da hierarquia

CRichEditCtrl::LimitText