Represents operators that can be used in filter conditions.
Namespace:
C1.OlapAssembly: C1.Silverlight.Olap.4 (in C1.Silverlight.Olap.4.dll)
Syntax
C# |
---|
public enum ConditionOperator |
Visual Basic |
---|
Public Enumeration ConditionOperator |
Members
Member name | Description | |
---|---|---|
None | Disables the operator. | |
Equals | Return true if the value equals the operator parameter. | |
NotEquals | Return true if the value does not equal the operator parameter. | |
GreaterThan | Return true if the value is greater than the operator parameter. | |
LessThan | Return true if the value is less than the operator parameter. | |
GreaterThanOrEqualTo | Return true if the value is greater than or equal to the operator parameter. | |
LessThanOrEqualTo | Return true if the value is less than or equal to the operator parameter. | |
Contains | Return true if the string representation of the value contains the operator parameter. | |
DoesNotContain | Return true if the string representation of the value does not contain the operator parameter. | |
BeginsWith | Return true if the string representation of the value begins with the operator parameter. | |
EndsWith | Return true if the string representation of the value ends with the operator parameter. |