Enum HightLightType
Specifies how search highlights are displayed for characters that match in list items during filtering.
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum HightLightType
Remarks
Used in components that provide matching text highlights, for example in the SfAutoComplete dropdown.
Examples
HightLightType type = HightLightType.Contains;
Fields
| Name | Description |
|---|---|
| Contains | Highlights characters that match anywhere within the item value (substring matching). |
| EndsWith | Highlights only when the search term matches the end of the item value. |
| StartsWith | Highlights only when the search text matches the beginning of the item value. |