Enum
TextOperator

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:

cs-api-definition
public enum TextOperator

Fields

Contains

The left operand contains the right one.

Declaration

cs-api-definition
Contains = 4

Field Value

TextOperator

DoesNotContain

The left operand does not contain the right one.

Declaration

cs-api-definition
DoesNotContain = 5

Field Value

TextOperator

DoesNotEqualTo

The left and the right operands are not equal.

Declaration

cs-api-definition
DoesNotEqualTo = 1

Field Value

TextOperator

EndsWith

The left operand ends with the right one.

Declaration

cs-api-definition
EndsWith = 3

Field Value

TextOperator

EqualsTo

The left and the right operands are equal.

Declaration

cs-api-definition
EqualsTo = 0

Field Value

TextOperator

IsEmpty

The text is null or empty.

Declaration

cs-api-definition
IsEmpty = 6

Field Value

TextOperator

IsNotEmpty

The text is not empty.

Declaration

cs-api-definition
IsNotEmpty = 7

Field Value

TextOperator

StartsWith

The left operand starts with the right one.

Declaration

cs-api-definition
StartsWith = 2

Field Value

TextOperator