Enum
CriterionOperator

Specifies the comparison operator for filter criteria.

Definition

Namespace:Telerik.Documents.AI.Tools.Spreadsheet.Core.AnalysisModels

Assembly:Telerik.Documents.AI.Tools.Spreadsheet.Core.dll

Syntax:

cs-api-definition
public enum CriterionOperator

Fields

Contains

Cell value contains the criterion value as a substring (case-insensitive).

Declaration

cs-api-definition
Contains = 6

Field Value

CriterionOperator

EndsWith

Cell value ends with the criterion value (case-insensitive).

Declaration

cs-api-definition
EndsWith = 8

Field Value

CriterionOperator

Equals

Cell value equals the criterion value (case-insensitive for text, numeric comparison for numbers).

Declaration

cs-api-definition
Equals = 0

Field Value

CriterionOperator

GreaterThan

Cell value is greater than the criterion value (numeric comparison).

Declaration

cs-api-definition
GreaterThan = 2

Field Value

CriterionOperator

GreaterThanOrEqual

Cell value is greater than or equal to the criterion value.

Declaration

cs-api-definition
GreaterThanOrEqual = 3

Field Value

CriterionOperator

IsEmpty

Cell is empty or contains only whitespace.

Declaration

cs-api-definition
IsEmpty = 9

Field Value

CriterionOperator

IsNotEmpty

Cell is not empty.

Declaration

cs-api-definition
IsNotEmpty = 10

Field Value

CriterionOperator

LengthGreaterThan

Cell value string length is greater than the criterion integer value.

Declaration

cs-api-definition
LengthGreaterThan = 11

Field Value

CriterionOperator

LengthLessThan

Cell value string length is less than the criterion integer value.

Declaration

cs-api-definition
LengthLessThan = 12

Field Value

CriterionOperator

LessThan

Cell value is less than the criterion value (numeric comparison).

Declaration

cs-api-definition
LessThan = 4

Field Value

CriterionOperator

LessThanOrEqual

Cell value is less than or equal to the criterion value.

Declaration

cs-api-definition
LessThanOrEqual = 5

Field Value

CriterionOperator

NotEquals

Cell value does not equal the criterion value.

Declaration

cs-api-definition
NotEquals = 1

Field Value

CriterionOperator

StartsWith

Cell value starts with the criterion value (case-insensitive).

Declaration

cs-api-definition
StartsWith = 7

Field Value

CriterionOperator