maxLength property

Sets or retrieves the maximum number of characters that the user can enter in a text control.

 

Syntax

HRESULT value = object.put_maxLength( v);HRESULT value = object.get_maxLength(* p);

Property values

Type: long

The maximum length of the input.

Standards information

Remarks

The IHTMLInputElement::maxLength property limits the number of characters the user can enter. The property does not limit programmatic assignments to the IHTMLInputElement::value property. The property's value can be larger than the IHTMLInputElement::size of the text box, in which case the text box scrolls as the user types.

See also

IHTMLInputElement::size