Skip to main content
.NET 8.0+

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

FullTextSearchTargetPropertiesMode Enum

Specifies the way in which the FullTextSearch Action collects properties to be used in the search.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public enum FullTextSearchTargetPropertiesMode

#Members

Name Description
AllSearchableMembers

Specifies that the FullTextSearch Action must perform its search over all the searchable properties.

VisibleColumns

Specifies that the FullTextSearch Action must perform its search over the properties whose corresponding columns are visible.

#Related API Members

The following properties accept/return FullTextSearchTargetPropertiesMode values:

#Remarks

This enumeration’s values are used to set the FilterController.FullTextSearchTargetPropertiesMode property.

Note

The FullTextSearch Action always performs a search over the Friendly Key property, even if the FullTextSearchTargetPropertiesMode.VisibleColumns mode is specified and Friendly Key column is hidden. The Friendly Key property is a business class property specified via the FriendlyKeyPropertyAttribute or via the IModelClass.FriendlyKeyProperty option in the Application Model.

To learn about the FullTextSearch Action, refer to the FilterController.FullTextFilterAction property description.

See Also