Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / UnparseFormula Method
The expression to unparse as string.
An integer value indicates the context row index.
An integer value indicates the context column index.


In This Topic
    UnparseFormula Method (Worksheet)
    In This Topic
    Parses the specified formula to expression.
    Syntax
    'Declaration
     
    
    Public Function UnparseFormula( _
       ByVal expression As Expression, _
       Optional ByVal contextRow As Integer, _
       Optional ByVal contextColumn As Integer, _
       Optional ByVal isA1Reference As Nullable(Of Boolean) _
    ) As String
    'Usage
     
    
    Dim instance As Worksheet
    Dim expression As Expression
    Dim contextRow As Integer
    Dim contextColumn As Integer
    Dim isA1Reference As Nullable(Of Boolean)
    Dim value As String
     
    value = instance.UnparseFormula(expression, contextRow, contextColumn, isA1Reference)

    Parameters

    expression
    The expression to unparse as string.
    contextRow
    An integer value indicates the context row index.
    contextColumn
    An integer value indicates the context column index.
    isA1Reference

    Return Value

    A GrapeCity.CalcEngine.Expression value represents the parsed expression.
    See Also