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

BetweenOperator(CriteriaOperator, CriteriaOperator, CriteriaOperator) Constructor

Initializes a new instance of the BetweenOperator class with the specified property and the specified range of values.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v19.2.dll

Declaration

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

Parameters

Name Type Description
testExpression CriteriaOperator

A CriteriaOperator descendant which represents the expression that identifies the property whose values are tested.

beginExpression CriteriaOperator

A CriteriaOperator descendant which represents the expression for the lower value in the range. This value is assigned to the BetweenOperator.LeftOperand property.

endExpression CriteriaOperator

A CriteriaOperator descendant which represents the expression for the upper value in the range. This value is assigned to the BetweenOperator.RightOperand property.

See Also