Skip to main content
A newer version of this page is available. .

GroupOperator(GroupOperatorType, IEnumerable<CriteriaOperator>) Constructor

Initializes a new instance of the GroupOperator with the specified parameters.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v19.1.dll

Declaration

public GroupOperator(
    GroupOperatorType type,
    IEnumerable<CriteriaOperator> operands
)

Parameters

Name Type Description
type GroupOperatorType

A GroupOperatorType enumeration value that specifies the type of the group operator. This value is assigned to the GroupOperator.OperatorType property.

operands IEnumerable<CriteriaOperator>

An object that implements the IEnumerable interface and represents a collection of CriteriaOperator objects which specify the operands required by the selected function. This value is used to initialize the FunctionOperator.Operands property.

See Also