When the 'Suggest' or 'SuggestAppend' values of the AutoCompleteMode enumeration are used, the dropdown automatically appears as the user types, displaying only the items that meet a certain criteria, and filtering out the rest. Properties which use the AutoSuggestFilterMode enumeration determine that criteria; i.e., whether a 'StartsWith' or 'Contains' condition is applied to the filtering mechanism.
Note: When the 'Contains' setting is used by the EditorWithCombo embeddable editor, the AutoCompleteMode value of 'SuggestAppend' resolves to 'Suggest', i.e, the auto-completion functionality is disabled, since text selection is not applicable when the items being displayed might not have the same run of characters in the beginning of their display text.
'Declaration Public Enum AutoSuggestFilterMode Inherits System.Enum
public enum AutoSuggestFilterMode : System.Enum
Member | Description |
---|---|
Contains | The dropdown list contains the items whose display text contains the characters typed by the user. |
Default | The actual value is determined at a higher level of the property resolution hierarchy. |
StartsWith | The dropdown list contains only the items whose display text begins with the characters typed by the user. |
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2