'Declaration Function EvaluateExpression( _ ByVal expression As Object, _ ByVal rowOffset As Integer, _ ByVal columnOffset As Integer, _ ByVal baseRow As Integer, _ ByVal baseColumn As Integer, _ ByVal isArrayFormula As Boolean _ ) As Object
'Usage Dim instance As ICalcEvaluator Dim expression As Object Dim rowOffset As Integer Dim columnOffset As Integer Dim baseRow As Integer Dim baseColumn As Integer Dim isArrayFormula As Boolean Dim value As Object value = instance.EvaluateExpression(expression, rowOffset, columnOffset, baseRow, baseColumn, isArrayFormula)
object EvaluateExpression( object expression, int rowOffset, int columnOffset, int baseRow, int baseColumn, bool isArrayFormula )
Parameters
- expression
- The expression.
- rowOffset
- The row offset.
- columnOffset
- The column offset.
- baseRow
- The base row.
- baseColumn
- The base column.
- isArrayFormula
- if set to
true
the expression is an array formula.
Return Value
The result of the specified expression.