Operator used for a restriction
Namespace: Seal.ModelAssembly: SealLibrary (in SealLibrary.dll) Version: 10.0.1.0+a44cd3a7f03c2bf3cdbd971a878c679e40bed08a
Syntax
Members| Member name | Value | Description |
|---|
| Equal | 0 |
Equals one of the values
|
| NotEqual | 1 |
Is different from the values
|
| Greater | 2 |
Is greater than the value
|
| GreaterEqual | 3 |
Is greater than or equal to the value
|
| Smaller | 4 |
Is smaller than the value
|
| SmallerEqual | 5 |
Is smaller than or equal to the value
|
| Between | 6 |
Is between the two values
|
| NotBetween | 7 |
Is not between the two values
|
| Contains | 8 |
Contains the value
|
| NotContains | 9 |
Does not contain the value
|
| StartsWith | 10 |
Starts with the value
|
| EndsWith | 11 |
Ends with the value
|
| IsEmpty | 12 |
Is empty (empty string)
|
| IsNotEmpty | 13 |
Is not empty (not an empty string)
|
| IsNull | 14 |
Is Null
|
| IsNotNull | 15 |
Is not Null
|
| ValueOnly | 16 |
Value only: the prompted value is used directly without operator
|
| ContainsAny | 17 |
Contains any of the values
|
| NotContainsAny | 18 |
Does not contain any of the values
|
| ContainsAll | 19 |
Contains all the values
|
| NotContainsAll | 20 |
Does not contain all the values
|
See Also