Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

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.v19.2.dll

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.

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