CEdit::GetLimitText
Chamar essa função de membro para obter o limite de texto para este CEdit objeto.
UINT GetLimitText( ) const;
Valor de retorno
O limite corrente de texto, em bytes, para este CEdit objeto.
Comentários
O limite de texto é a quantidade máxima de texto, em bytes, que aceite controle de edição.
Observação: |
---|
Esta função de membro é início disponível com o Windows 95 e Windows NT 4.0. |
Para obter mais informações, consulte EM_GETLIMITTEXT in the 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