expressappframework-devexpress-dot-expressapp-dot-systemmodule-735b828c.md
Specifies the way in which the FullTextSearch Action collects properties to be used in the search.
Namespace : DevExpress.ExpressApp.SystemModule
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public enum FullTextSearchTargetPropertiesMode
Public Enum FullTextSearchTargetPropertiesMode
| 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.
|
The following properties accept/return FullTextSearchTargetPropertiesMode values:
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