Gets the formula, as a string value, for the specified expression for the cell at the specified row and column.
            
            
            
Syntax
            Parameters
- row
 
- Row index of the cell
 - column
 
- Column index of the cell
 - expression
 
- Expression to be unparsed
 
            
            Return Value
String containing the formula
 
            
						
            
            
            
            
Example
This example evaluates the expression and returns the resulting object for the cell at the specified row and column.
             
| C# |  Copy Code | 
|---|
FarPoint.Win.Spread.Model.IExpressionSupport ems; 
ems = (FarPoint.Win.Spread.Model.IExpressionSupport)fpSpread1.ActiveSheet.Models.Data; 
fpSpread1.ActiveSheet.SetValue(0, 0, 5); 
fpSpread1.ActiveSheet.SetValue(1, 0, 5); 
ems.SetFormula(2, 0, "SUM(A1, A2)"); 
string s;
s = ems.GetFormula(2, 0);
FarPoint.CalcEngine.Expression exp;
FarPoint.Win.Spread.Model.IExpressionSupport2 es;
es = (FarPoint.Win.Spread.Model.IExpressionSupport2)fpSpread1.ActiveSheet.Models.Data;
exp = es.ParseFormula(2, 0, s);
MessageBox.Show("The parsed formula is " + exp.ToString());
string ret;
ret = es.UnparseFormula(2, 0, exp);
MessageBox.Show("The unparsed formula is " + ret); | 
 
| Visual Basic |  Copy Code | 
|---|
Dim ems As FarPoint.Win.Spread.Model.IExpressionSupport
ems = FpSpread1.ActiveSheet.Models.Data
FpSpread1.ActiveSheet.SetValue(0, 0, 5)
FpSpread1.ActiveSheet.SetValue(1, 0, 5)
ems.SetFormula(2, 0, "SUM(A1, A2)")
Dim s As String
s = ems.GetFormula(2, 0)
Dim exp As FarPoint.CalcEngine.Expression
Dim es As FarPoint.Win.Spread.Model.IExpressionSupport2
es = FpSpread1.ActiveSheet.Models.Data
exp = es.ParseFormula(2, 0, s)
Response.Write("The parsed formula is " & exp.ToString())
Dim ret As String
ret = es.UnparseFormula(2, 0, exp)
MessageBox.Show("The unparsed formula is " & ret) | 
 
 
            
            
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also