Skip to main content
All docs
V25.1

ITreeList.SearchTextParseMode Property

Specify how the TreeList searches for a match if the query contains multiple words.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v25.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(TreeListSearchTextParseMode.GroupWordsByAnd)]
TreeListSearchTextParseMode SearchTextParseMode { get; set; }

Property Value

Type Default Description
TreeListSearchTextParseMode GroupWordsByAnd

An enumeration value.

Available values:

Name Description Image
GroupWordsByAnd

The TreeList searches for a row containing all the words from the search query (in any order).

Search Box: And Mode

GroupWordsByOr

The TreeList searches for a row containing any word from the search query.

Search Box: Or Mode

ExactMatch

The TreeList searches for an exact matching phrase.

Search Box: Exact Mode

Remarks

Refer to the SearchTextParseMode property description for more information and an example.

See Also