CEdit::GetLimitText
Chamar essa função de membro para obter o limite de texto para este objeto de CEdit .
UINT GetLimitText( ) const;
Valor de retorno
O limite de texto atual, em bytes, para este objeto de CEdit .
Comentários
O limite de texto é a quantidade máxima de texto, em bytes, que o controle de edição pode aceitar.
Dica
Essa função de membro é início disponível no Windows 95 e Windows NT 4.0.
Para obter mais informações, consulte EM_GETLIMITTEXT em Windows SDK.
Exemplo
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);
Requisitos
Cabeçalho: afxwin.h