Document Solutions for Excel, .NET Edition | Document Solutions
GrapeCity.Documents.Excel Namespace / FormatConditionOperator Enumeration
In This Topic
    FormatConditionOperator Enumeration
    In This Topic
    Specifies the operator to use to compare a formula against the value in a cell or, for Between and NotBetween, to compare two formulas.
    Syntax
    public enum FormatConditionOperator : System.Enum 
    Members
    MemberDescription
    Between Specifes to compare between values. Can only be used if two formulas are provided.
    Equal Specifies values are equal.
    Greater Specifies values are greater than the condition.
    GreaterEqual Specifies values are greater than or equal to the condition.
    Less Specifies values are less than the condition.
    LessEqual Specifies values are less than or equal to the condition.
    None None
    NotBetween Specifies to check if values are not between the conditions. Can only be used if two formulas are provided.
    NotEqual Specifies values are not equal.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Documents.Excel.FormatConditionOperator

    See Also