Enum SearchType
Specifies the available search modes used while filtering.
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum SearchType
Remarks
This enum defines how item values are compared to the typed search text in filter-enabled dropdown controls.
Examples
SearchType search = SearchType.StartsWith;
Fields
| Name | Description |
|---|---|
| Equal | Allows filtering by matching only the items that are equal to the typed value. |
| StartsWith | Allows filtering by searching only from the start of the item value (prefix match). |