ComponentOne Binding Expressions for WPF and Silverlight
C1.Silverlight.Binding Namespace / CalcEngineFunction Delegate
List of Expression objects that represent the parameters to be used in the function call.

In This Topic
    CalcEngineFunction Delegate
    In This Topic
    Delegate that represents CalcEngine functions.
    Syntax
    'Declaration
     
    
    Public Delegate Function CalcEngineFunction( _
       ByVal parms As System.Collections.Generic.List(Of Expression) _
    ) As System.Object
    public delegate System.object CalcEngineFunction( 
       System.Collections.Generic.List<Expression> parms
    )

    Parameters

    parms
    List of Expression objects that represent the parameters to be used in the function call.

    Return Value

    The function result.
    See Also