Click or drag to resize

CONDITION_OPERATION Enumeration

Provides a set of flags to be used in property descriptions. Wraps Windows' CONDITION_OPERATION enumeration..

Namespace:  callback.ShellBoost.Core.WindowsPropertySystem
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public enum CONDITION_OPERATION
Members
  Member nameValueDescription
COP_IMPLICIT0 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_EQUAL1 The value of the property and the value of the constant must be equal.
COP_NOTEQUAL2 The value of the property and the value of the constant must not be equal.
COP_LESSTHAN3 The value of the property must be less than the value of the constant.
COP_GREATERTHAN4 The value of the property must be greater than the value of the constant.
COP_LESSTHANOREQUAL5 The value of the property must be less than or equal to the value of the constant.
COP_GREATERTHANOREQUAL6 The value of the property must be greater than or equal to the value of the constant.
COP_VALUE_STARTSWITH7 The value of the property must begin with the value of the constant.
COP_VALUE_ENDSWITH8 The value of the property must end with the value of the constant.
COP_VALUE_CONTAINS9 The value of the property must contain the value of the constant.
COP_VALUE_NOTCONTAINS10 The value of the property must not contain the value of the constant.
COP_DOSWILDCARDS11 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_EQUAL12 The value of the property must contain a word that is the value of the constant.
COP_WORD_STARTSWITH13 The value of the property must contain a word that begins with the value of the constant.
COP_APPLICATION_SPECIFIC14 The application is free to interpret this in any suitable way.
See Also