[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.FilterOperator

FilterOperator Enum

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

Namespace: GrapeCity.ActiveReports.PageReportModel
Assembly: MESCIUS.ActiveReports.Core.Rdl.dll
Syntax
public enum FilterOperator

Fields

Name Description
Between

Displays the record if the FilterExpression result falls between the two FilterValues.

BottomN

Displays the record if the FilterExpression result is in the bottom N of all records processed.

BottomPercent

Displays the record if the FilterExpression result is in the bottom N% of all records processed.

Equal

Displays the record if the two values are equal.

GreaterThan

Displays the record if the FilterExpression result is greater than the FilterValues.

GreaterThanOrEqual

Displays the record if the FilterExpression result is greater than or equal to the FilterValues.

In

Displays the record if the FilterExpression result is within the list of FilterValues.

LessThan

Displays the record if the FilterExpression result is less than the FilterValue.

LessThanOrEqual

Displays the record if the FilterExpression result is less than or equal to the FilterValue.

Like

Displays the record if the FilterExpression results satisfy the pattern set in the FilterValues.

NotEqual

Displays the record if the two values are not equal.

TopN

Displays the record if the FilterExpression result is in the top N of all records processed.

TopPercent

Displays the record if the FilterExpression result is in the top N% of all records processed.

Extension Methods