Spread Windows Forms 15.0
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / ISymbolResolver Interface / ResolveStructuredObject Method / ResolveStructuredObject(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 object name.
An integer value indicates the length of the object name.


In This Topic
    ResolveStructuredObject(FormulaEngine,Char,Int32,Int32) Method
    In This Topic
    Resolves the structured object from the specified object name.
    Syntax
    'Declaration
     
    
    Overloads Function ResolveStructuredObject( _
       ByVal engine As FormulaEngine, _
       ByVal formula As Char, _
       ByVal index As Integer, _
       ByVal length As Integer _
    ) As IStructuredObject
    'Usage
     
    
    Dim instance As ISymbolResolver
    Dim engine As FormulaEngine
    Dim formula As Char
    Dim index As Integer
    Dim length As Integer
    Dim value As IStructuredObject
     
    value = instance.ResolveStructuredObject(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 object name.
    length
    An integer value indicates the length of the object name.

    Return Value

    An Expression object represents the parsed expression.
    See Also