Enum FilterType
Determines which filter type the DropDown component uses during search operations.
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum FilterType
Remarks
This enumeration specifies how the search term is matched with the item values during search actions in filtering-enabled components such as SfDropDownList, SfComboBox and others that support filtering.
Examples
FilterType filterType = FilterType.StartsWith;
// Use this filter type in the component's search settings
Fields
| Name | Description |
|---|---|
| Contains | Filter items in which the search term appears anywhere within the item value. |
| EndsWith | Filter items whose value ends with the provided search term. |
| StartsWith | Filter items whose value begins with the given search term. |