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

TcxGridItemDataBinding.FilterCriteriaItem Property

Refers to the first filter condition of the corresponding grid View item.

#Declaration

Delphi
property FilterCriteriaItem: TcxFilterCriteriaItem read;

#Property Value

Type
TcxFilterCriteriaItem

#Remarks

Use the FilterCriteriaItem property to access to the first filter condition of the grid View item. The filter criteria provided by the Filter and the View’s DataController.Filter properties can contain several filter conditions involving the current item. If so, only the first filter condition is retrieved. Each filter condition represents an object of the TcxFilterCriteriaItem class and refers to the current item (the TcxFilterCriteriaItem.ItemLink property), a comparison operator (the TcxFilterCriteriaItem.OperatorKind property) and the value with which data is compared (the TcxFilterCriteriaItem.Value property).

To remove any filters applied to the current item, set the Filtered property to False.

See Also