Enum FilterOperator
Specifies the comparison operator of a filter.
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public enum FilterOperator : int
Fields
Name | Description |
---|---|
Contains | Satisfied if the current value contains the specified value. |
Custom | Custom operator if not need to generate the filter. |
DoesNotContain | Satisfied if the current value does not contain the specified value. |
EndsWith | Satisfied if the current value ends with the specified value. |
Equals | Satisfied if the current value equals the specified value. |
GreaterThan | Satisfied if the current value is greater than the specified value. |
GreaterThanOrEquals | Satisfied if the current value is greater than or equal to the specified value. |
In | Satisfied if the current value is in the specified value. |
IsEmpty | Satisfied if the current value is |
IsNotEmpty | Satisfied if the current value is not |
IsNotNull | Satisfied if the current value is not null. |
IsNull | Satisfied if the current value is null. |
LessThan | Satisfied if the current value is less than the specified value. |
LessThanOrEquals | Satisfied if the current value is less than or equal to the specified value. |
NotEquals | Satisfied if the current value does not equal the specified value. |
NotIn | Satisfied if the current value is not in the specified value. |
StartsWith | Satisfied if the current value starts with the specified value. |