Back to Devexpress

TextEditAutoCompleteMode Enum

windowsforms-devexpress-dot-xtraeditors-35b83466.md

latest2.2 KB
Original Source

TextEditAutoCompleteMode Enum

Enumerates values that specify auto-complete mode for text editors.

Namespace : DevExpress.XtraEditors

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
public enum TextEditAutoCompleteMode
vb
Public Enum TextEditAutoCompleteMode

Members

NameDescription
None

Text auto-completion is disabled.

| | Suggest |

The editor displays a drop-down list with suggestions when a user types the first word in the edit box.

| | Append |

The editor automatically completes the first entered word in the edit box. The editor uses the first matching suggestion from a source of suggestions.

| | SuggestAppend |

The editor uses a combination of the Append and Suggest options — it automatically completes the first word in the edit box, and displays a drop-down list with suggestions.

| | SuggestSingleWord |

The editor displays a drop-down list with custom suggestions every time a user types a new word in the edit box. The editor automatically sets the AutoCompleteSource option to CustomSource in SuggestSingleWord mode. Use the CustomizeAutoCompleteSource event, or AutoCompleteCustomSource collection to specify the custom auto-complete suggestions.

|

The following properties accept/return TextEditAutoCompleteMode values:

See Also

TextEdit

DevExpress.XtraEditors Namespace