Evaluate(Int32,Int32,Expression,IValue,Boolean) Method
In This Topic
Evaluates the specified expression again a context cell.
Syntax
'Declaration
Public Sub Evaluate( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Expression, _
ByRef As IValue, _
Optional ByVal As Boolean _
)
'Usage
Dim instance As Worksheet
Dim row As Integer
Dim column As Integer
Dim expression As Expression
Dim evaluatedResult As IValue
Dim preferRawValue As Boolean
instance.Evaluate(row, column, expression, evaluatedResult, preferRawValue)
public void Evaluate(
int ,
int column,
Expression ,
out IValue ,
bool
)
Parameters
- row
- An integer value indicates the row index of the context cell.
- column
- An integer value indicates the column index of the context cell.
- expression
- The expression to evaluate.
- evaluatedResult
- The evaluated value.
- preferRawValue
true
if the first evaluated result should be returned; otherwise, false
.
See Also