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

GroupOperatorType Enum

Lists group operators the Criteria Language supports.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

NuGet Package: DevExpress.XamarinForms.Core

Declaration

[Serializable]
public enum GroupOperatorType

Members

Name Description
And

The logical AND operator.

Pass a string like "FieldName > 100 AND FieldName < 250" into the CriteriaOperator.Parse method to create this operator from the string.

Or

The logical OR operator.

Pass a string like "Field1Name > 100 OR Field2Name > 50" into the CriteriaOperator.Parse method to create this operator from the string.

Remarks

The GroupOperator.OperatorType field uses this enumeration’s values.

See Also