MESCIUS SPREAD for ASP.NET 10.0J
ResetFormula メソッド

セルの数式を空にリセットします。
構文
'Declaration
 
Public Sub ResetFormula() 
public void ResetFormula()
次のサンプルコードは、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()
参照

Cell クラス
Cell メンバ

 

 


© MESCIUS inc. All rights reserved.