Enum FilterOperatorType

FilterOperatorType enumeration

Custom Filter operator type.

public enum FilterOperatorType

Values

NameValueDescription
LessOrEqual0Represents LessOrEqual operator.
LessThan1Represents LessThan operator.
Equal2Represents Equal operator.
GreaterThan3Represents GreaterThan operator.
NotEqual4Represents NotEqual operator.
GreaterOrEqual5Represents GreaterOrEqual operator.
None6Represents no comparison.
BeginsWith7Begins with the text.
EndsWith8Ends with the text.
Contains9Contains the text.
NotContains10Not contains the text.

See Also