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

FunctionOperator(FunctionOperatorType, IEnumerable<CriteriaOperator>) Constructor

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

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v19.1.dll

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