Search
FunctionSeries.EvaluateFunction Delegate
See Also
 






Defines the signature of methods called to evaluate unknown functions used in the expression.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public delegate Object FunctionSeries.EvaluateFunction (
    string name,
    Object[] arguments
)

Visual Basic  Copy Code

Public Delegate Function FunctionSeries.EvaluateFunction( _
    name As String, _
    arguments() As Object _
) As Object

 Parameters

name

A string value specifying function name.

arguments

A list of arguments passed to the function.

 Return Value

The value of function for specified arguments.

 See Also