Enum
ComparisonOperator

Comparison operators used in data validation, conditional formatting, and filtering operations.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Model

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

cs-api-definition
public enum ComparisonOperator

Fields

Between

Tests whether a value falls within an inclusive range defined by two boundary values.

Declaration

cs-api-definition
Between = 6

Field Value

ComparisonOperator

EqualsTo

Tests whether two values are equal.

Declaration

cs-api-definition
EqualsTo = 0

Field Value

ComparisonOperator

GreaterThan

Tests whether the first value is greater than the second.

Declaration

cs-api-definition
GreaterThan = 1

Field Value

ComparisonOperator

GreaterThanOrEqualsTo

Tests whether the first value is greater than or equal to the second.

Declaration

cs-api-definition
GreaterThanOrEqualsTo = 2

Field Value

ComparisonOperator

LessThan

Tests whether the first value is less than the second.

Declaration

cs-api-definition
LessThan = 3

Field Value

ComparisonOperator

LessThanOrEqualsTo

Tests whether the first value is less than or equal to the second.

Declaration

cs-api-definition
LessThanOrEqualsTo = 4

Field Value

ComparisonOperator

NotBetween

Tests whether a value falls outside an inclusive range defined by two boundary values.

Declaration

cs-api-definition
NotBetween = 7

Field Value

ComparisonOperator

NotEqualsTo

Tests whether two values are not equal.

Declaration

cs-api-definition
NotEqualsTo = 5

Field Value

ComparisonOperator