NumberCompareOperator Enumeration |
Definition of operators that can be used
when search criterias are compared to real data.
Only a limited combinations of operators and
data types are used.
Some values are shared by other compare operator enums. For example, StringCompareOperator and CompareOperator.
Make sure index numbers are mapped correctly for each enum. This is to make it possible to convert values between related enums.
Namespace: ArtDatabanken.DataAssembly: ArtDatabanken (in ArtDatabanken.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax public enum NumberCompareOperator
Public Enumeration NumberCompareOperator
public enum class NumberCompareOperator
type NumberCompareOperator
Members
| Member name | Value | Description |
---|
| Equal | 3 | Equal. |
| Greater | 5 | Greater. |
| GreaterOrEqual | 6 | Greater or equal. |
| Less | 8 | Less. |
| LessOrEqual | 9 | Less or equal. |
| NotEqual | 11 | Not equal. |
See Also