CriteriaOperator.GreaterThan(CriteriaOperator, CriteriaOperator) Operator
Initializes a new BinaryOperator instance that checks whether a value the left criterion specifies is greater than a value the right criterion returns.
Namespace: DevExpress.XamarinForms.Core.Filtering
Assembly: DevExpress.XamarinForms.Core.dll
NuGet Package: DevExpress.XamarinForms.Core
Declaration
public static BinaryOperator operator>(CriteriaOperator left, CriteriaOperator right)
Parameters
| Name | Type | Description |
|---|---|---|
| left | CriteriaOperator | The first criterion to compare. |
| right | CriteriaOperator | The second criterion to compare. |
Returns
| Type | Description |
|---|---|
| BinaryOperator | The new binary operator with the OperatorType field set to Greater. |
See Also