Class AutoCompleteModes
Specifies the modes of auto completion that can be applied to an edit control (text box, combo box and controls implementing IEditControlsEmbed). The AutoComplete control provides a AutoComplete extended property to these types of edit controls.
Inheritance
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public sealed class AutoCompleteModes : Enum
Remarks
This type is used by the AutoComplete control to set the extended property on the target controls. The default AutoCompleteMode.Disabled.
Fields
AutoAppend
The most appropriate match for the current content of the edit control will be automatically appended to the edit control and the user can choose to type further or accept the appended word.
Declaration
public const AutoCompleteModes AutoAppend
Field Value
| Type |
|---|
| AutoCompleteModes |
AutoSuggest
Possible matches for the current content of the active edit control will be presented in the form of a popup window with a selectable list of matches.
Declaration
public const AutoCompleteModes AutoSuggest
Field Value
| Type |
|---|
| AutoCompleteModes |
Both
Activates both AutoAppend and AutoSuggest modes of auto completion for the target control.
Declaration
public const AutoCompleteModes Both
Field Value
| Type |
|---|
| AutoCompleteModes |
Disabled
AutoComplete will be disabled.
Declaration
public const AutoCompleteModes Disabled
Field Value
| Type |
|---|
| AutoCompleteModes |
MultiSuggest
Possible matches from Multiple columns for the current content of the Active edit control will be presented in a form of a popupwindow with a selectable list of matches. Multisuggest mode is an extended mode of AutoSuggest.
Declaration
public const AutoCompleteModes MultiSuggest
Field Value
| Type |
|---|
| AutoCompleteModes |
MultiSuggestExtended
Possible entries of the current content of the Active edit control will be presented in a form of a popupwindow with a selectable list of matches. With this mode all possible matches will be highlighted.
Declaration
public const AutoCompleteModes MultiSuggestExtended
Field Value
| Type |
|---|
| AutoCompleteModes |