TcxFilterBoolOperatorKind Enum
Represents an operation that combines filter conditions in the filter criteria for a grid control.
Declaration
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