Create(TcxFilterCriteriaItemList,TcxFilterBoolOperatorKind) Constructor
Creates a new aggregate condition in a specific filter condition list.
Declaration
constructor Create(AOwner: TcxFilterCriteriaItemList; ABoolOperatorKind: TcxFilterBoolOperatorKind); virtual;
Parameters
Name | Type |
---|---|
AOwner | TcxFilterCriteriaItemList |
ABoolOperatorKind | TcxFilterBoolOperatorKind |
Remarks
The constructor creates a new aggregate condition (a list of conditions). The created aggregate condition is inserted as an item into the AOwner list. The ABoolOperatorKind parameter specifies the logical operator to initialize the BoolOperatorKind property of a new TcxFilterCriteriaItemList object.
If AOwner is set to NIL, the constructor creates a root list of conditions, which is not inserted into another one. Call the AddItem (AddItemList) method to add a simple (aggregate) condition to the list.
See Also