Skip to main content

FunctionOperator(FunctionOperatorType, IEnumerable<CriteriaOperator>) Constructor

Initializes a new instance of the FunctionOperator class with the specified parameters.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public FunctionOperator(
    FunctionOperatorType type,
    IEnumerable<CriteriaOperator> operands
)

Parameters

Name Type Description
type FunctionOperatorType

A FunctionOperatorType enumeration value that specifies the type of function. This value is used to initialize the FunctionOperator.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