Spread Windows Forms 11.0 Product Documentation
SetFormula Method (DefaultSheetDataModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetDataModel Class : SetFormula Method
Sets the formula, as a string value, for the cell of the specified row and column. If you pass null, it clears the expression from that cell.
Overload List
OverloadDescription
Sets the formula, as a string value, for the cell of the specified row and column. If you pass null, it clears the expression from that cell.  
Example
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5)
Dim o As Object
FpSpread1.ActiveSheet.Models.Data = dataModel
dataModel.SetValue(0, 0, 10)
dataModel.SetValue(1, 0, 20)
dataModel.SetFormula(0, 0, "3*SUM(A1, A2)")
o = dataModel.GetFormula(0, 0)
ListBox1.Items.Add(o.ToString())
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
object o;
fpSpread1.ActiveSheet.Models.Data = dataModel;
dataModel.SetValue(0, 0, 10);
dataModel.SetValue(1, 0, 20);
dataModel.SetFormula(0, 0, "3*SUM(A1, A2)");
o = dataModel.GetFormula(0, 0);
listBox1.Items.Add(o.ToString());
See Also

Reference

DefaultSheetDataModel Class
DefaultSheetDataModel Members