CONDITION_OPERATION Enumeration |
Namespace:
ShellBoost.Core.WindowsPropertySystem
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public enum CONDITION_OPERATION
Members
| Member name | Value | Description |
---|
| COP_IMPLICIT | 0 |
An implicit comparison between the value of the property and the value of the constant. For an unresolved condition, COP_IMPLICIT means that a user did not type an operation. In contrast, a resolved condition will always have a condition other than the COP_IMPLICIT operation.
|
| COP_EQUAL | 1 |
The value of the property and the value of the constant must be equal.
|
| COP_NOTEQUAL | 2 |
The value of the property and the value of the constant must not be equal.
|
| COP_LESSTHAN | 3 |
The value of the property must be less than the value of the constant.
|
| COP_GREATERTHAN | 4 |
The value of the property must be greater than the value of the constant.
|
| COP_LESSTHANOREQUAL | 5 |
The value of the property must be less than or equal to the value of the constant.
|
| COP_GREATERTHANOREQUAL | 6 |
The value of the property must be greater than or equal to the value of the constant.
|
| COP_VALUE_STARTSWITH | 7 |
The value of the property must begin with the value of the constant.
|
| COP_VALUE_ENDSWITH | 8 |
The value of the property must end with the value of the constant.
|
| COP_VALUE_CONTAINS | 9 |
The value of the property must contain the value of the constant.
|
| COP_VALUE_NOTCONTAINS | 10 |
The value of the property must not contain the value of the constant.
|
| COP_DOSWILDCARDS | 11 |
The value of the property must match the value of the constant, where '?' matches any single character and '*' matches any sequence of characters.
|
| COP_WORD_EQUAL | 12 |
The value of the property must contain a word that is the value of the constant.
|
| COP_WORD_STARTSWITH | 13 |
The value of the property must contain a word that begins with the value of the constant.
|
| COP_APPLICATION_SPECIFIC | 14 |
The application is free to interpret this in any suitable way.
|
See Also