Edit

Share via


FilterOperator Enum

Definition

Defines the operators that you can use to compare a property value to a filter value.

[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("923DF81C-82BE-4D3B-BBC0-D01DF5EDC510")]
public enum FilterOperator
type FilterOperator = 
Public Enum FilterOperator
Inheritance
FilterOperator
Attributes

Fields

Equal 4

Include the object in the result if the property value equals the filter value. This enumeration member represents a value of 4.

GreaterThan 0

Include the object in the result if the property value is greater than the filter value. This enumeration member represents a value of 0.

GreaterThanOrEqual 1

Include the object in the result if the property value is greater than or equal to the filter value. This enumeration member represents a value of 1.

HasBitSet 6

Include the object in the result if the property value has one or more bits set. For example, you can use this operator to test if the state of the job is failed or canceled by using the bitwise OR to set the filter value to both states. This enumeration member represents a value of 6.

HasExclusiveBitSet 10

Include the object in the result if the property value has a single bit set. This enumeration member represents a value of 10.

HasNoBitSet 7

Include the object in the result if the property value has no bits set. This enumeration member represents a value of 7.

In 11
IsNotNull 9

Include the object in the result if the property value is not null. This enumeration member represents a value of 9.

IsNull 8

Include the object in the result if the property value is null. This enumeration member represents a value of 8.

LessThan 2

Include the object in the result if the property value is less than the filter value. This enumeration member represents a value of 2.

LessThanOrEqual 3

Include the object in the result if the property value is less than or equal to the filter value. This enumeration member represents a value of 3.

NotEqual 5

Include the object in the result if the property value is not equal to the filter value. This enumeration member represents a value of 5.

StartWith 12

Applies to