Skip to main content

TcxFilterCriteriaItem Class

A simple condition in a filter criteria list.

Declaration

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