Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / IEvaluationContext Interface / Evaluate Method / Evaluate(IDelegate,IValue) Method
The expression to evaluate.
The IValue object to keep evaluated result.


In This Topic
    Evaluate(IDelegate,IValue) Method
    In This Topic
    Evaluates the specified expression and returns the evaluated result via result parameter.
    Syntax
    'Declaration
     
    
    Overloads Sub Evaluate( _
       ByVal delegate As IDelegate, _
       ByVal result As IValue _
    ) 
    'Usage
     
    
    Dim instance As IEvaluationContext
    Dim delegate As IDelegate
    Dim result As IValue
     
    instance.Evaluate(delegate, result)
    void Evaluate( 
       IDelegate delegate,
       IValue result
    )

    Parameters

    delegate
    The expression to evaluate.
    result
    The IValue object to keep evaluated result.
    See Also