Spread WPF 17
GrapeCity.CalcEngine.Operators Namespace / CalcConcatenateOperator Class / Evaluate Method
The left operand.
The right operand..
The GrapeCity.CalcEngine.CalcEvaluatorContext associate with the operator evaluation.


In This Topic
    Evaluate Method (CalcConcatenateOperator)
    In This Topic
    Returns the result of the operator applied to the operands.
    Syntax
    'Declaration
     
    Public Overrides Function Evaluate( _
       ByVal left As Object, _
       ByVal right As Object, _
       ByVal context As CalcEvaluatorContext _
    ) As Object
    'Usage
     
    Dim instance As CalcConcatenateOperator
    Dim left As Object
    Dim right As Object
    Dim context As CalcEvaluatorContext
    Dim value As Object
     
    value = instance.Evaluate(left, right, context)
    public override object Evaluate( 
       object left,
       object right,
       CalcEvaluatorContext context
    )

    Parameters

    left
    The left operand.
    right
    The right operand..
    context
    The GrapeCity.CalcEngine.CalcEvaluatorContext associate with the operator evaluation.

    Return Value

    Result of the operator applied to the operand.
    See Also