[]
Specifies the operator to use to compare a formula against the value in a cell or, for Between and NotBetween, to compare two formulas.
public enum FormatConditionOperator
Between = 1Specifes to compare between values. Can only be used if two formulas are provided.
Equal = 3Specifies values are equal.
Greater = 5Specifies values are greater than the condition.
GreaterEqual = 7Specifies values are greater than or equal to the condition.
Less = 6Specifies values are less than the condition.
LessEqual = 8Specifies values are less than or equal to the condition.
None = 0None.
NotBetween = 2Specifies to check if values are not between the conditions. Can only be used if two formulas are provided.
NotEqual = 4Specifies values are not equal.