FarPoint.Web.Spread 名前空間 > Cell クラス : ResetFormula メソッド |
FarPoint.Web.Spread.Cell mycell; mycell = FpSpread1.Cells[2,0]; FpSpread1.ActiveSheetView.SetValue(0,0,10); FpSpread1.ActiveSheetView.SetValue(1,0,10); mycell.Formula="SUM(A1:A2)"; //mycell.ResetFormula();
Dim mycell As FarPoint.Web.Spread.Cell mycell = FpSpread1.Cells(2, 0) FpSpread1.ActiveSheetView.SetValue(0, 0, 10) FpSpread1.ActiveSheetView.SetValue(1, 0, 10) mycell.Formula = "SUM(A1:A2)" 'mycell.ResetFormula()