Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / ConditionalStyleOperator Enumeration


In This Topic
    ConditionalStyleOperator Enumeration
    In This Topic
    Defines operators that are used to customize a ConditionalStyleInfo.
    Syntax
    'Declaration
     
    
    Public Enum ConditionalStyleOperator 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As ConditionalStyleOperator
    public enum ConditionalStyleOperator : System.Enum 
    Members
    MemberDescription
    BetweenIndicates that the Cell.Value is in a range.
    ContainsIndicates that the Cell.Value contains a value.
    EndsWithIndicates that the Cell.Value ends with a value.
    EqualsIndicates that the Cell.Value is equal to the value.
    GreaterThanIndicates that the Cell.Value is greater than the value.
    GreaterThanOrEqualsIndicates that the Cell.Value is greater than or equal to the value.
    IsEmptyIndicates that the Cell.Value is a null reference (Nothing in Visual Basic) or DBNull.Value or String.Empty.
    IsFalseIndicates that the Cell.Value is false.
    IsMatchIndicates that the Cell.Value matches a regular expression.
    IsNotEmptyIndicates that the Cell.Value is not a null reference (Nothing in Visual Basic) or DBNull.Value or String.Empty.
    IsNotMatchIndicates that the Cell.Value does not match a regular expression.
    IsNotNullIndicates that the Cell.Value is not a null reference (Nothing in Visual Basic) or DBNull.Value.
    IsNullIndicates that the Cell.Value is a null reference (Nothing in Visual Basic) or DBNull.Value.
    IsTrueIndicates that the Cell.Value is true.
    LessThanIndicates that the Cell.Value is less than the value.
    LessThanOrEqualsIndicates that the Cell.Value is less than or equal to the value.
    NotBetweenIndicates that the Cell.Value is out of range.
    NotEqualsIndicates that the Cell.Value is not equal to the value.
    StartsWithIndicates that the Cell.Value starts with a value.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             FarPoint.Win.Spread.ConditionalStyleOperator

    See Also