Click or drag to resize
FilterOperator Enumeration
Operator used in FilterDescription

Namespace: Kettic.AspNet.Data
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public enum FilterOperator
Members
  Member nameValueDescription
IsLessThan0 Left operand must be smaller than the right one.
IsLessThanOrEqualTo1 Left operand must be smaller than or equal to the right one.
IsEqualTo2 Left operand must be equal to the right one.
IsNotEqualTo3 Left operand must be different from the right one.
IsGreaterThanOrEqualTo4 Left operand must be larger than the right one.
IsGreaterThan5 Left operand must be larger than or equal to the right one.
StartsWith6 Left operand must start with the right one.
EndsWith7 Left operand must end with the right one.
Contains8 Left operand must contain the right one.
IsContainedIn9 Left operand must be contained in the right one.
See Also