Skip to main content

BetweenOperator(String, CriteriaOperator, CriteriaOperator) Constructor

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

Namespace: DevExpress.XamarinForms.Core.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

NuGet Package: DevExpress.XamarinForms.Core

Declaration

public BetweenOperator(
    string testPropertyName,
    CriteriaOperator beginExpression,
    CriteriaOperator endExpression
)

Parameters

Name Type Description
testPropertyName String

The property to test. It can be a path through object relationships (e.g., "Order.TotalIncome"). This value is case-sensitive.

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