Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FunctionWrapper.Evaluate(IList<ParameterValue>, EvaluationContext) Method

Override this method to calculate the function as needed.

Namespace: DevExpress.Spreadsheet.Functions

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public virtual ParameterValue Evaluate(
    IList<ParameterValue> parameters,
    EvaluationContext context
)

#Parameters

Name Type Description
parameters IList<ParameterValue>

A IList<T><ParameterValue,> object containing parameters passed to the function.

context EvaluationContext

An EvaluationContext object containing information on the cell and worksheet in which the function is being calculated.

#Returns

Type Description
ParameterValue

A ParameterValue object that is the calculated value.

#Remarks

Make sure that the method returns the ParameterValue

See Also