FilterCondition Enumeration |
An enumeration of the different conditions that a value can be filtered on.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public enum FilterCondition
Public Enumeration FilterCondition
public enum class FilterCondition
Members
| Member name | Value | Description |
---|
| Invalid | 0 |
The filter condition is invalid or missing.
|
| Between | 1 |
The value must lie between two inclusive values.
|
| StartsWith | 2 |
The value must start with a fixed string.
|
| EndsWith | 3 |
The value must end with a fixed string.
|
| Equals | 4 |
The value must equal a fixed value.
|
| Contains | 5 |
The value must contain a fixed string.
|
See Also