'Declaration
Public Function Evaluate( _ ByVal formula As String, _ ByVal worksheet As IWorksheet, _ ByVal contextCell As CellReference _ ) As IValue
'Usage
Dim instance As CalculationEngine Dim formula As String Dim worksheet As IWorksheet Dim contextCell As CellReference Dim value As IValue value = instance.Evaluate(formula, worksheet, contextCell)
public IValue Evaluate( string formula, IWorksheet worksheet, CellReference contextCell )
Parameters
- formula
- An string value indicates the formula to evaluate.
- worksheet
- An IWorksheet object indicates the context worksheet.
- contextCell
- A CellReference value indicates the context cell.
Return Value
GrapeCity.CalcEngine.IValue.