TextOperator
Enum
Defines the operator used when text filtering is required and two string instances are compared.
Definition
Namespace:Telerik.Maui.Controls.Data
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public enum TextOperator
Fields
The left operand contains the right one.
C#
Contains = 4
The left operand does not contain the right one.
C#
DoesNotContain = 5
The left and the right operands are not equal.
C#
DoesNotEqualTo = 1
The left operand ends with the right one.
C#
EndsWith = 3
The left and the right operands are equal.
C#
EqualsTo = 0
The text is null or empty.
C#
IsEmpty = 6
The text is not empty.
C#
IsNotEmpty = 7
The left operand starts with the right one.
C#
StartsWith = 2