New to Telerik UI for .NET MAUIStart a free 30-day trial

Defines the operator used when numerical data filtering is required.

Definition

Namespace:Telerik.Maui.Controls.Data

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public enum NumericalOperator

Fields

The left and the right operands are not equal.

C#
DoesNotEqualTo = 1

The left and the right operands are equal.

C#
EqualsTo = 0

The left operand is greater than the right one.

C#
IsGreaterThan = 2

The left operand is greater than or equal to the right one.

C#
IsGreaterThanOrEqualTo = 3

The left operand is less than the right one.

C#
IsLessThan = 4

The left operand is less than or equal to the right one.

C#
IsLessThanOrEqualTo = 5