FilterOperator Enumeration |
Namespace: Kettic.AspNet.DataAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic enum FilterOperator
Public Enumeration FilterOperator
public enum class FilterOperator
Members
| Member name | Value | Description |
---|
| IsLessThan | 0 |
Left operand must be smaller than the right one.
|
| IsLessThanOrEqualTo | 1 |
Left operand must be smaller than or equal to the right one.
|
| IsEqualTo | 2 |
Left operand must be equal to the right one.
|
| IsNotEqualTo | 3 |
Left operand must be different from the right one.
|
| IsGreaterThanOrEqualTo | 4 |
Left operand must be larger than the right one.
|
| IsGreaterThan | 5 |
Left operand must be larger than or equal to the right one.
|
| StartsWith | 6 |
Left operand must start with the right one.
|
| EndsWith | 7 |
Left operand must end with the right one.
|
| Contains | 8 |
Left operand must contain the right one.
|
| IsContainedIn | 9 |
Left operand must be contained in the right one.
|
See Also