CEdit::LimitText

void LimitText( int nChars = 0 );

Parameters

nChars

Specifies the length (in bytes) of the text that the user can enter. If this parameter is 0, the text length is set to UINT_MAX bytes. This is the default behavior.

Remarks

Call this function to limit the length of the text that the user may enter into an edit control.

Changing the text limit restricts only the text the user can enter. It has no effect on any text already in the edit control, nor does it affect the length of the text copied to the edit control by the SetWindowText member function in CWnd. If an application uses the SetWindowText function to place more text into an edit control than is specified in the call to LimitText, the user can delete any of the text within the edit control. However, the text limit will prevent the user from replacing the existing text with new text, unless deleting the current selection causes the text to fall below the text limit.

Note   In Win32 (Windows NT and Windows 95), SetLimitText replaces this function.

For more information, see EM_LIMITTEXT in the Win32 documentation.

CEdit OverviewClass MembersHierarchy Chart

See Also   CWnd::SetWindowText, CEdit::GetLimitText, CEdit::SetLimitText