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

TcxFilterBoolOperatorKind Enum

Represents an operation that combines filter conditions in the filter criteria for a grid control.

#Declaration

Delphi
TcxFilterBoolOperatorKind = (
    fboAnd,
    fboOr,
    fboNotAnd,
    fboNotOr
);

#Members

Name
fboAnd
fboOr
fboNotAnd
fboNotOr

#Remarks

The TcxFilterBoolOperatorKind type enumerates operations used to combine filter conditions to construct aggregate filter criteria for a grid control. Use the TcxFilterCriteriaItemList.BoolOperatorKind property to set the operation combining filter conditions in the list.

Value Description
fboAnd Defines the logical OR operation for filter conditions.
fboOr Defines the logical AND operation for filter conditions.
fboNotAnd Combines conditions using the logical AND operator and then negates the result.
fboNotOr Combines conditions using the logical OR operator and then negates the result.
See Also