OperatorType

Overview

OperatorType is a enum in Aspose.Cells for NET.

OperatorType enum defines comparison operators such as Between, Equal, GreaterThan, GreaterOrEqual, LessThan, LessOrEqual, NotBetween, NotEqual, and a default None value for conditional logic.

Description

OperatorType is an enumeration type in the Aspose.Cells FOSS library for .NET. It defines a set of named constants that control behavior or specify options within the API. Enumerations like OperatorType help ensure type safety by restricting values to a predefined set.

Values

ValueDescription
BetweenValue falls within a specified lower and upper bound (inclusive)
EqualValue exactly equals the specified operand
GreaterThanValue is strictly greater than the specified operand
GreaterOrEqualValue is greater than or equal to the specified operand
LessThanValue is strictly less than the specified operand
LessOrEqualValue is less than or equal to the specified operand
NoneNo comparison operator; condition type determines matching logic
NotBetweenValue falls outside the specified lower and upper bound
NotEqualValue does not equal the specified operand

See Also