EnumCriterionOperator
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:
public enum CriterionOperator
Fields
Contains
Cell value contains the criterion value as a substring (case-insensitive).
EndsWith
Cell value ends with the criterion value (case-insensitive).
Equals
Cell value equals the criterion value (case-insensitive for text, numeric comparison for numbers).
GreaterThan
Cell value is greater than the criterion value (numeric comparison).
GreaterThanOrEqual
Cell value is greater than or equal to the criterion value.
IsEmpty
Cell is empty or contains only whitespace.
IsNotEmpty
Cell is not empty.
LengthGreaterThan
Cell value string length is greater than the criterion integer value.
LengthLessThan
Cell value string length is less than the criterion integer value.
LessThan
Cell value is less than the criterion value (numeric comparison).
LessThanOrEqual
Cell value is less than or equal to the criterion value.
NotEquals
Cell value does not equal the criterion value.
StartsWith
Cell value starts with the criterion value (case-insensitive).