Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FilterController.FullTextSearchMode Property

Specifies the way in which the FullTextSearch Actions performs its search.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public SearchMode FullTextSearchMode { get; set; }

#Property Value

Type Description
SearchMode

A SearchMode enumeration value that specifies the way in which the FullTextSearch Action performs its search. The default value is SearchMode.SearchInObject.

Available values:

Name Description
SearchInProperty

Specifies that the FullTextSearch Action (see FilterController.FullTextFilterAction) searches the entire word combination typed by an end-user in the properties of the objects represented by the current List View.

SearchInObject

Specifies that the FullTextSearch Action (see FilterController.FullTextFilterAction) searches individual words from the word combination typed by an end-user in different properties of the objects represented by the current List View.

#Remarks

The FullTextSearchMode enumeration exposes two values - the SearchInObject and SearchInProperty. When the FullTextSearchMode property is set to SearchInObject, the FullTextSearch Action searches individual words from the word combination typed by an end-user in different properties included in the search scope. When the FullTextSearchMode property is set to SearchInProperty, the FullTextSearch Action searches the word combination in each property included in the search scope.

By default, the FullTextSearchMode property is set to SearchInObject.

See Also