AutoCompleteMode Enum

Definition

Specifies the mode for the automatic completion feature used in the ComboBox and TextBox controls.

public enum class AutoCompleteMode
public enum AutoCompleteMode
type AutoCompleteMode = 
Public Enum AutoCompleteMode
Inheritance
AutoCompleteMode

Fields

Append 2

Appends the remainder of the most likely candidate string to the existing characters, highlighting the appended characters.

None 0

Disables the automatic completion feature for the ComboBox and TextBox controls.

Suggest 1

Displays the auxiliary drop-down list associated with the edit control. This drop-down is populated with one or more suggested completion strings.

SuggestAppend 3

Applies both Suggest and Append options.

Applies to