AutoCompleteSource Enum

Definition

Specifies the source for ComboBox and TextBox automatic completion functionality.

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

Fields

AllSystemSources 7

Specifies the equivalent of FileSystem and AllUrl as the source. This is the default value when AutoCompleteMode has been set to a value other than the default.

AllUrl 6

Specifies the equivalent of HistoryList and RecentlyUsedList as the source.

CustomSource 64

Specifies strings from a built-in AutoCompleteStringCollection as the source.

FileSystem 1

Specifies the file system as the source.

FileSystemDirectories 32

Specifies that only directory names and not file names will be automatically completed.

HistoryList 2

Includes the Uniform Resource Locators (URLs) in the history list.

ListItems 256

Specifies that the items of the ComboBox represent the source.

None 128

Specifies that no AutoCompleteSource is currently in use. This is the default value of AutoCompleteSource.

RecentlyUsedList 4

Includes the Uniform Resource Locators (URLs) in the list of those URLs most recently used.

Applies to