Version

AutoSuggestFilterMode Enumeration

Constants which specify the filtering mode for the automatic completion feature used in the EditorWithCombo embeddable editor.

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.

Syntax
'Declaration
 
Public Enum AutoSuggestFilterMode 
   Inherits System.Enum
public enum AutoSuggestFilterMode : System.Enum 
Members
MemberDescription
ContainsThe dropdown list contains the items whose display text contains the characters typed by the user.
DefaultThe actual value is determined at a higher level of the property resolution hierarchy.
StartsWithThe dropdown list contains only the items whose display text begins with the characters typed by the user.
Requirements

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

See Also