Skip to main content
Tab

ASPxTextBoxBase.AutoCompleteType Property

Gets or sets a value that indicates the editor’s AutoComplete behavior.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(AutoCompleteType.None)]
public virtual AutoCompleteType AutoCompleteType { get; set; }

Property Value

Type Default Description
AutoCompleteType None

One of the AutoCompleteType enumeration values, indicating the AutoComplete behavior for the editor.

Remarks

To assist with data entry, some browsers support a feature called AutoComplete. AutoComplete monitors a text box and creates a list of values entered by the user. When the user returns to the text box at a later time, the list is displayed. Instead of retyping a previously entered value, the user can simply select the value from this list. Use the AutoCompleteType property to control the behavior of the AutoComplete feature for an editor. The AutoCompleteType enumeration is used to represent the values that you can apply to the AutoCompleteType property.

Note

Not all browsers support the AutoComplete feature. Check with your browser to determine compatibility.

You can refer to the AutoCompleteType property’s description for more information.

See Also