Spread WinForms 15
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / FormulaEngine Class / Unparse Method / Unparse(IReferenceSource,Int32,Int32,Expression) Method
The IReferenceSource object which is using formula.
An integer value indicates the context row index.
An integer value indicates the context column index.
An Expression object represents the expression.


In This Topic
Unparse(IReferenceSource,Int32,Int32,Expression) Method
In This Topic
Unparses the specified expression to formula text.
Syntax
'Declaration
 
Public Overloads Function Unparse( _
   ByVal contextSource As IReferenceSource, _
   ByVal contextRow As Integer, _
   ByVal contextColumn As Integer, _
   ByVal expr As Expression _
) As String
 
'Usage
 
Dim instance As FormulaEngine
Dim contextSource As IReferenceSource
Dim contextRow As Integer
Dim contextColumn As Integer
Dim expr As Expression
Dim value As String
 
value = instance.Unparse(contextSource, contextRow, contextColumn, expr)

Parameters

contextSource
The IReferenceSource object which is using formula.
contextRow
An integer value indicates the context row index.
contextColumn
An integer value indicates the context column index.
expr
An Expression object represents the expression.

Return Value

The formula text unparsed from the input expression.
See Also