Spread WinForms 15
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / ISymbolResolver Interface / Resolve Method / Resolve(FormulaEngine,Char,Int32,Int32) Method
A FormulaEngine object indicates the formula parser.
A character array indicates the formula text.
An integer value indicates the start index of the symbol.
An integer value indicates the length of the symbol.


In This Topic
Resolve(FormulaEngine,Char,Int32,Int32) Method
In This Topic
Resolves an expression from the sepecified symbol.
Syntax
'Declaration
 
Overloads Function Resolve( _
   ByVal engine As FormulaEngine, _
   ByVal formula As Char, _
   ByVal index As Integer, _
   ByVal length As Integer _
) As Expression
 
'Usage
 
Dim instance As ISymbolResolver
Dim engine As FormulaEngine
Dim formula As Char
Dim index As Integer
Dim length As Integer
Dim value As Expression
 
value = instance.Resolve(engine, formula, index, length)

Parameters

engine
A FormulaEngine object indicates the formula parser.
formula
A character array indicates the formula text.
index
An integer value indicates the start index of the symbol.
length
An integer value indicates the length of the symbol.

Return Value

An Expression object represents the parsed expression.
See Also