Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxFilterCriteriaItem Class

A simple condition in a filter criteria list.

#Declaration

Delphi
TcxFilterCriteriaItem = class(
    TcxCustomFilterCriteriaItem
)

#Remarks

A simple condition is an operation of comparison (CustomerID < 1000, Name LIKE ‘McD%’, or Month <> ‘November’).

To define a condition you must specify:

  • The item for which a filter condition is applied (the ItemLink property);

  • The comparison operator (the OperatorKind property);

  • The value with which data is compared (the Value property).

Simple conditions are used in an aggregate filter condition, which is a list of simple or aggregate conditions combined by a logical operator. The TcxFilterCriteriaItemList class implements an aggregate filter condition.

#Inheritance

See Also