Specifies operators used to compare data in filters, etc.

Namespace:  C1.C1Rdl
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public enum Operator
Visual Basic
Public Enumeration Operator

Members

Member nameDescription
Equal Equality comparison.
Like Like 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).
NotEqual Inequality comparison.
GreaterThan Greater than comparison.
GreaterThanOrEqual Greater than, or equal comparison.
LessThan Less than comparison.
LessThanOrEqual Less than, or equal comparison.
TopN Check if value is in top N values.
BottomN Check if value is in bottom N values.
TopPercent Check if value is in top N percent values.
BottomPercent Check if value is in bottom N percent values.
In Check if value is equal to any value.
Between Check if value is between the two values.

See Also