FilterBuilderOperatorItem.OperatorType Property
Returns the criteria operator type.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
public FilterBuilderOperatorType OperatorType { get; }
Property Value
| Type | Description |
|---|---|
| FilterBuilderOperatorType | An enumeration value. |
Available values:
| Name | Description |
|---|---|
| Equals | Corresponding UI command: Equals. |
| DoesNotEqual | Corresponding UI command: Does not equal. |
| IsSameDay | Corresponding UI command: Is the same date as. |
| Greater | Corresponding UI command: Is greater than. |
| GreaterOrEqual | Corresponding UI command: Is greater than or equal to. |
| Less | Corresponding UI command: Is less than. |
| LessOrEqual | Corresponding UI command: Is less than or equal to. |
| Between | Corresponding UI command: Is between. |
| NotBetween | Corresponding UI command: Is not between. |
| Contains | Corresponding UI command: Contains. |
| DoesNotContain | Corresponding UI command: Does not contain. |
| BeginsWith | Corresponding UI command: Begins with. |
| EndsWith | Corresponding UI command: Ends with. |
| Like | Corresponding UI command: Is like. |
| NotLike | Corresponding UI command: Is not like. |
| InDateRange | Corresponding UI command: Is in date range. |
| NotInDateRange | Corresponding UI command: Is not in date range. |
| InTimeRange | Corresponding UI command: Is in time range. |
| OutOfTimeRange | Corresponding UI command: Is out of time range. |
| AnyOf | Corresponding UI command: Is any of. |
| NoneOf | Corresponding UI command: Is none of. |
| IsNull | Corresponding UI command: Is blank. |
| IsNotNull | Corresponding UI command: Is not blank. |
| IsNullOrEmpty | Corresponding UI command: Is blank. Applies to String data types only. |
| IsNotNullOrEmpty | Corresponding UI command: Is not blank. Applies to String data types only. |
| IsToday | Corresponding UI command: Is today. |
| IsYesterday | Corresponding UI command: Is yesterday. |
| IsTomorrow | Corresponding UI command: Is tomorrow. |
| IsThisWeek | Corresponding UI command: Is this week. |
| IsLastWeek | Corresponding UI command: Is last week. |
| IsNextWeek | Corresponding UI command: Is next week. |
| IsThisMonth | Corresponding UI command: Is this month. |
| IsLastMonth | Corresponding UI command: Is last month. |
| IsNextMonth | Corresponding UI command: Is next month. |
| IsThisYear | Corresponding UI command: Is this year. |
| IsLastYear | Corresponding UI command: Is last year. |
| IsNextYear | Corresponding UI command: Is next year. |
| IsYearToDate | Corresponding UI command: Is in Year-to-Date period. |
| IsPriorThisYear | Corresponding UI command: Is prior to this year. |
| IsBeyondThisYear | Corresponding UI command: Is beyond this year. |
| IsJanuary | Corresponding UI command: Is January. |
| IsFebruary | Corresponding UI command: Is February. |
| IsMarch | Corresponding UI command: Is March. |
| IsApril | Corresponding UI command: Is April. |
| IsMay | Corresponding UI command: Is May. |
| IsJune | Corresponding UI command: Is June. |
| IsJuly | Corresponding UI command: Is July. |
| IsAugust | Corresponding UI command: Is August. |
| IsSeptember | Corresponding UI command: Is September. |
| IsOctober | Corresponding UI command: Is October. |
| IsNovember | Corresponding UI command: Is November. |
| IsDecember | Corresponding UI command: Is December. |
| CustomFunction | Corresponds to a custom criteria function. |
| Exists | Corresponding UI command: Exists. Applies to collection fields only. |
| Count | Corresponding UI command: Count. Applies to collection fields only. |
| Avg | Corresponding UI command: Avg. Applies to collection fields only. |
| Sum | Corresponding UI command: Sum. Applies to collection fields only. |
| Min | Corresponding UI command: Min. Applies to collection fields only. |
| Max | Corresponding UI command: Max. Applies to collection fields only. |
Remarks
Handle the CustomizeOperators event to access and customize operator item collections (Operators). Refer to the following article for additional information and examples: Filter Operators in Blazor Filter Builder.