Skip to main content
Version: 3.5

AutoCompleteMode

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Specifies the mode for the automatic completion feature used in the ComboBox control.

public enum AutoCompleteMode : Enum

Fields

NameDescription
AppendAppends the remainder of the most likely candidate string to the existing characters, highlighting the appended text. If the drop-down list is open, scrolls the first item that matches the typed text into view.
AppendFilterAppends the remainder of the most likely candidate string to the existing characters, highlighting the appended text. If the drop-down list is open, filters the items in the list to show only the ones that begin with the typed text.
FilterAutomatically shows the drop-down list as soon as the user starts typing, filters the items in the list to show only the ones that begin with the typed text.
FilterAnywhereAutomatically shows the drop-down list as soon as the user starts typing, filters the items in the list to show only the ones that contain the typed text anywhere.
Since 3.5.6
FilterAppendAppends the remainder of the most likely candidate string to the existing characters, highlighting the appended text. If the drop-down list is open, filters the items in the list to show only the ones that begin with the typed text.
NoneIf the drop-down list is already open, scrolls the first item that matches the text into view.
SuggestAutomatically shows the drop-down list as soon as the user starts typing and scrolls the first item that matches the text into view.
SuggestAppendAutomatically shows the drop-down list as soon as the user starts typing and appends the remainder of the most likely candidate string to the existing characters, highlighting the appended text, and scrolls the first item that matches the text into view.

Used By

NameDescription
ComboBox.AutoCompleteModeReturns or sets how automatic completion works for the ComboBox.
DataGridViewComboBoxCell.AutoCompleteModeReturns or sets how automatic completion works for the DataGridViewComboBoxColumn.
DataGridViewComboBoxColumn.AutoCompleteModeReturns or sets how automatic completion works for the DataGridViewComboBoxColumn.