expressappframework-devexpress-dot-expressapp-dot-actions-11317d17.md
Contains values specifying the quantity of selected objects that must satisfy a particular criterion (see ActionBase.TargetObjectsCriteria) to enable an Action.
Namespace : DevExpress.ExpressApp.Actions
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public enum TargetObjectsCriteriaMode
Public Enum TargetObjectsCriteriaMode
| Name | Description |
|---|---|
TrueAtLeastForOne |
At least one of the selected objects in a View must satisfy the criteria specified by the ActionBase.TargetObjectsCriteria property to enable the Action.
|
| TrueForAll |
All the objects selected in a View must satisfy the criteria specified by the ActionBase.TargetObjectsCriteria property to enable the Action.
|
The following properties accept/return TargetObjectsCriteriaMode values:
Members of the TargetObjectsCriteriaMode enumeration specify the selection type that must by applied to a View to enable a specific Action. To get the enumeration value which is considered by the Action, use the ActionBase.TargetObjectsCriteriaMode property.
See Also