Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Rdl Namespace / Operator Enumeration

In This Topic
    Operator Enumeration
    In This Topic
    Specifies operators used to compare data in filters, etc.
    Syntax
    'Declaration
     
    Public Enum Operator 
       Inherits System.Enum
    public enum Operator : System.Enum 
    Members
    MemberDescription
    BetweenCheck if value is between the two values.
    BottomNCheck if value is in bottom N values.
    BottomPercentCheck if value is in bottom N percent values.
    EqualEquality comparison.
    GreaterThanGreater than comparison.
    GreaterThanOrEqualGreater than, or equal comparison.
    InCheck if value is equal to any value.
    LessThanLess than comparison.
    LessThanOrEqualLess than, or equal comparison.
    LikeLike comparison. Uses the same special characters as the Visual Basic LIKE operator (for example “?” to represent a single character and “*” to represent any series of characters).
    NotEqualInequality comparison.
    TopNCheck if value is in top N values.
    TopPercentCheck if value is in top N percent values.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.C1Rdl.Operator

    See Also