CalcEngine for .NET
C1.CalcEngine.ExpressionEngine Namespace / FunctionDefinition Class / FunctionDefinition Constructor
Minimum count of function arguments.
Maximum count of function arguments.
Function for this definition.
Function type.

In This Topic
    FunctionDefinition Constructor
    In This Topic
    Initializes a new instance of the FunctionDefinition class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal minArgsCount As Integer, _
       ByVal maxArgsCount As Integer, _
       ByVal function As Func(Of List(Of IExpression),Object), _
       ByVal functionType As ItemType _
    )

    Parameters

    minArgsCount
    Minimum count of function arguments.
    maxArgsCount
    Maximum count of function arguments.
    function
    Function for this definition.
    functionType
    Function type.
    See Also