[]
        
Represents the comparison operator.
public enum Operator
  Public Enum [Operator]
  | Name | Description | 
|---|---|
| BeginsWith | The value contains the specified text at the beginning.  | 
      
| Between | The value is between the specified range of values.  | 
      
| ContainsText | The value contains the specified text.  | 
      
| DoesNotContainsText | The value does not contain the specified text.  | 
      
| DoesNotEqual | The value is not equal to the parameter value.  | 
      
| EndsWith | The value contains the specified text at the end.  | 
      
| Equal | The value is equal to the parameter value.  | 
      
| GreaterThan | The value is greater than the parameter value.  | 
      
| GreaterThanOrEqual | The value is greater than or equal to the parameter value.  | 
      
| LessThan | The value is less than the parameter value.  | 
      
| LessThanOrEqual | The value is less than or equal to the parameter value.  | 
      
| NotBetween | The value is not between the specified range of values.  |