ActiveReports Developer 7
FilterOperator Enumeration
See Also 
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.PageReportModel Namespace : FilterOperator Enumeration

Glossary Item Box

Specifies the operator to use to compare the values returned by the FilterExpression with those in the FilterValues object.

Syntax

Visual Basic (Declaration) 
Public Enum FilterOperator 
   Inherits System.Enum
C# 
public enum FilterOperator : System.Enum 

Members

MemberDescription
BetweenDisplays the record if the FilterExpression result falls between the two FilterValues.
BottomNDisplays the record if the FilterExpression result is in the bottom N of all records processed.
BottomPercentDisplays the record if the FilterExpression result is in the bottom N% of all records processed.
EqualDisplays the record if the two values are equal.
GreaterThanDisplays the record if the FilterExpression result is greater than the FilterValues.
GreaterThanOrEqualDisplays the record if the FilterExpression result is greater than or equal to the FilterValues.
InDisplays the record if the FilterExpression result is within the list of FilterValues.
LessThanDisplays the record if the FilterExpression result is less than the FilterValue.
LessThanOrEqualDisplays the record if the FilterExpression result is less than or equal to the FilterValue.
LikeDisplays the record if the FilterExpression results satisfy the pattern set in the FilterValues.
NotEqualDisplays the record if the two values are not equal.
TopNDisplays the record if the FilterExpression result is in the top N of all records processed.
TopPercentDisplays the record if the FilterExpression result is in the top N% of all records processed.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GrapeCity.ActiveReports.PageReportModel.FilterOperator

See Also