BetweenOperator(String, 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.v23.1.dll
NuGet Package: DevExpress.Data
Declaration
public BetweenOperator(
string testPropertyName,
CriteriaOperator beginExpression,
CriteriaOperator endExpression
)
Parameters
Name | Type | Description |
---|---|---|
testPropertyName | String | A String value which 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.BeginExpression property. |
endExpression | CriteriaOperator | A CriteriaOperator descendant which represents the expression for the upper value in the range. This value is assigned to the BetweenOperator.EndExpression property. |