Skip to main content
A newer version of this page is available. .

GroupOperatorType Enum

Enumerates group operator types.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v18.1.dll

Declaration

public enum GroupOperatorType

Members

Name Description
And

Groups operands with logical AND.

To create the logical AND operator using the CriteriaOperator.Parse method use the following syntax:

CriteriaOperator.Parse(“Field1 > 100 AND Field2 < 150”)

Or

Groups operands with logical OR.

To create the logical OR operator using the CriteriaOperator.Parse method use the following syntax:

CriteriaOperator.Parse(“Field1 > 100 OR Field2 < 150”)

Remarks

The values listed by this enumeration are used to set the GroupOperator.OperatorType property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the GroupOperatorType enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also