Enum SuggestionMode
specifies the modes of search with auto complete.
Namespace: Syncfusion.Windows.Controls.Input
Assembly: Syncfusion.SfInput.Wpf.dll
Syntax
public enum SuggestionMode
Fields
| Name | Description |
|---|---|
| Contains | Returns the suggestions whether the beginning of the string contains in the list which is culture sensitive. |
| ContainsCaseSensitive | Returns the suggestions whether the beginning of the string contains in the list which is culture and case sensitive. |
| ContainsOrdinal | Returns the suggestions whether the beginning of the string contains in the list by using StringComparer.OrdinalIgnoreCase. |
| ContainsOrdinalCaseSensitive | Returns the suggestions whether the beginning of the string contains in the list by using StringComparer.Ordinal. |
| Custom | Returns the Suggestion whether the specified object occurs with in the list. |
| EndsWith | Returns the suggestions whether the ending of the string matches in the list which is culture sensitive. |
| EndsWithCaseSensitive | Returns the suggestions whether the ending of the string matches in the list which is culture and case sensitive. |
| EndsWithOrdinal | Returns the suggestions whether the ending of the string matches in the list by using StringComparer.OrdinalIgnoreCase. |
| EndsWithOrdinalCaseSensitive | Returns the suggestions whether the ending of the string matches in the list by using StringComparer.Ordinal. |
| Equals | Returns the suggestions whether the beginning of the string equals in the list which is culture sensitive. |
| EqualsCaseSensitive | Returns the suggestions whether the beginning of the string equals in the list which is culture and case sensitive. |
| EqualsOrdinal | Returns the suggestions whether the beginning of the string equals in the list by using StringComparer.OrdinalIgnoreCase. |
| EqualsOrdinalCaseSensitive | Returns the suggestions whether the beginning of the string equals in the list by using StringComparer.Ordinal. |
| None | Returns the all the AutoCompleteSource collection to suggestions |
| StartsWith | Returns the suggestions whether the beginning of the string matches in the list which is culture sensitive. |
| StartsWithCaseSensitive | Returns the suggestions whether the beginning of the string matches in the list which is culture and case sensitive. |
| StartsWithOrdinal | Returns the suggestions whether the beginning of the string matches in the list by using StringComparer.OrdinalIgnoreCase. |
| StartsWithOrdinalCaseSensitive | Returns the suggestions whether the beginning of the string matches in the list by using StringComparer.Ordinal. |