TcxFilterBoolOperatorKind Enum
In This Article
Represents an operation that combines filter conditions in the filter criteria for a grid control.
#Declaration
Delphi
TcxFilterBoolOperatorKind = (
fboAnd,
fboOr,
fboNotAnd,
fboNotOr
);
#Members
Name |
---|
fbo
|
fbo
|
fbo
|
fbo
|
#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 |
---|---|
fbo |
Defines the logical OR operation for filter conditions. |
fbo |
Defines the logical AND operation for filter conditions. |
fbo |
Combines conditions using the logical AND operator and then negates the result. |
fbo |
Combines conditions using the logical OR operator and then negates the result. |
See Also