[]
Indicates the string matching mode of automatic complete.
public enum AutoCompleteMatchingMode
Public Enum AutoCompleteMatchingMode
Name | Description |
---|---|
AmbiguousMatchAll | Finds all matched strings in the candidate string, uses ambiguous character comparison. |
AmbiguousMatchStartWith | Compares candidate strings that start with matching, uses ambiguous character comparison. |
ExactMatchAll | Finds all matched strings in the candidate string, case-sensitive. |
ExactMatchStartWith | Compares candidate strings that start with matching, case-sensitive. |
MatchAll | Finds all matched strings in the candidate string, ignores case. |
MatchStartWith | Compares candidate strings that start with matching, ignores case. |