Skip to main content

BetweenOperator(CriteriaOperator, CriteriaOperator, CriteriaOperator) Constructor

Initializes a new BetweenOperator instance with the specified operators that define a property to test, and a value range.

Namespace: DevExpress.XamarinForms.Core.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

NuGet Package: DevExpress.XamarinForms.Core

Declaration

public BetweenOperator(
    CriteriaOperator testExpression,
    CriteriaOperator beginExpression,
    CriteriaOperator endExpression
)

Parameters

Name Type Description
testExpression CriteriaOperator

The operator that specifies the property to test.

beginExpression CriteriaOperator

The operator that defines the lowest value in the range.

endExpression CriteriaOperator

The operator that defines the highest value in the range.

See Also