AutoCompleteFlags Enumeration

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum AutoCompleteFlags

Remarks

Members

Default 0 The default setting, equivalent to AutoCompleteFlags.FileSystem Or AutoCompleteFlags.UrlAll.

Default cannot be combined with any other flags.

FileSystem 1 Include the file system and the rest of the Shell (Desktop, Computer, and Control Panel, for example).
UrlHistory 2 Include the URLs in the user's History list.
UrlMRU 4 Include the URLs in the user's Most Recently Used (MRU) list.
UrlAll 6 Include the URLs in the users History and Recently Used lists.

Equivalent to AutoCompleteFlags.UrlHistory Or AutoCompleteFlags.UrlMRU.

UseTab 8 Allow the user to select from the autosuggest list by pressing the TAB key.

If this flag is not set, pressing the TAB key will shift focus to the next control and close the autosuggest list.

If UseTab is set, pressing the TAB key will select the first item in the list. Pressing TAB again will select the next item in the list, and so on. When the user reaches the end of the list, the next TAB key press will cycle the focus back to the edit control.

This flag must be used in combination with one or more of the following flags:

FileSystem, FileSystemDirs, FileSystemOnly, UrlHistory or UrlMRU.

FileSystemOnly 16 Include the file system only.
FileSystemDirs 32 Include the file system and directories, UNC servers, and UNC server shares.
VirtualNamespace 64 Also include the virtual namespace
AutoSuggestForceOn 268,435,456 Ignore the registry value and force the AutoSuggest feature on.

A selection of possible completed strings will be displayed as a drop-down list, below the edit box.

This flag must be used in combination with one or more of the following flags:

FileSystem, FileSystemDirs, FileSystemOnly, UrlHistory or UrlMRU.

AutoSuggestForceOff 536,870,912 Ignore the registry default and force the AutoSuggest feature off.

This flag must be used in combination with one or more of the following flags:

FileSystem, FileSystemDirs, FileSystemOnly, UrlHistory or UrlMRU.

AutoAppendForceOn 1,073,741,824 Ignore the registry value and force the AutoAppend feature on.

The completed string will be displayed in the edit box with the added characters highlighted.

This flag must be used in combination with one or more of the following flags:

FileSystem, FileSystemDirs, FileSystemOnly, UrlHistory or UrlMRU.

AutoAppendForceOff 2,147,483,648 Ignore the registry default and force the AutoAppend feature off.

This flag must be used in combination with one or more of the following flags:

FileSystem, FileSystemDirs, FileSystemOnly, UrlHistory or UrlMRU.

See Also