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:
C#
public enum ComparisonOperator
Fields
Tests whether a value falls within an inclusive range defined by two boundary values.
C#
Between = 6
Tests whether two values are equal.
C#
EqualsTo = 0
Tests whether the first value is greater than the second.
C#
GreaterThan = 1
Tests whether the first value is greater than or equal to the second.
C#
GreaterThanOrEqualsTo = 2
Tests whether the first value is less than the second.
C#
LessThan = 3
Tests whether the first value is less than or equal to the second.
C#
LessThanOrEqualsTo = 4
Tests whether a value falls outside an inclusive range defined by two boundary values.
C#
NotBetween = 7
Tests whether two values are not equal.
C#
NotEqualsTo = 5