Gets the formula, as a string value, from 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 unparsed
 
            
						
            
            
            
            
Example
This example unparses a formula.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.Model.DefaultSheetDataModel dm;
dm = FpSpread1.ActiveSheetView.DataModel;
FarPoint.CalcEngine.Expression ex;
string s;
FpSpread1.ActiveSheetView.Cells[0, 0].Value = 10; 
FpSpread1.ActiveSheetView.Cells[1, 0].Value = 10; 
FpSpread1.ActiveSheetView.Cells[2, 0].Formula = "A1 + A2"; 
ex = dm.ParseFormula(2, 0, "A1+A2"); 
s = dm.UnparseFormula(2, 0, ex); Response.Write(s);
  | 
 
| Visual Basic |  Copy Code | 
|---|
Dim dm As FarPoint.Web.Spread.Model.DefaultSheetDataModel
dm = FpSpread1.ActiveSheetView.DataModel
Dim ex As FarPoint.CalcEngine.Expression
Dim s As String
FpSpread1.ActiveSheetView.Cells(0, 0).Value = 10 
FpSpread1.ActiveSheetView.Cells(1, 0).Value = 10 
FpSpread1.ActiveSheetView.Cells(2, 0).Formula = "A1 + A2" 
ex = dm.ParseFormula(2, 0, "A1+A2") 
s = dm.UnparseFormula(2, 0, ex)
Response.Write(s)   | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also