ComparisonOperator Enumeration |
Enumeration used to define comparisons for evaluated metric set state conditions.
Namespace:
Dundas.BI.Entities.MetricSets
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public enum ComparisonOperator
Public Enumeration ComparisonOperator
public enum class ComparisonOperator
Members
| Member name | Value | Description |
---|
| None | 0 | The comparison operator is not set. |
| EqualTo | 1 | The comparison checks if the left operand is equal with the right operand. |
| GreaterThan | 2 | The comparison checks if the left operand is greater than the right operand. |
| GreaterThanOrEqualTo | 3 | The comparison checks if the left operand is greater or equal with the right operand. |
| LessThan | 4 | The comparison checks if the left operand is smaller than the right operand. |
| LessThanOrEqualTo | 5 | The comparison checks if the left operand is smaller or equal with the right operand. |
| NotEqualTo | 6 | The comparison checks if the left operand is not equal with the right operand. |
See Also