PowerTools SPREAD for Windows Forms 8.0J
Recalculate メソッド (SheetView)


最後の計算サイクル以降に変更されたシート上の すべての数式を評価します。
構文
'Declaration
 
Public Sub Recalculate() 
'使用法
 
Dim instance As SheetView
 
instance.Recalculate()
public void Recalculate()
次のサンプルコードは、数式を再計算します。
DialogResult dlg;
fpSpread1.ActiveSheet.SetValue(0, 0, 20);
fpSpread1.ActiveSheet.SetValue(0, 1, 10);
fpSpread1.ActiveSheet.SetFormula(3, 0, "SUM(A1,B1)");
dlg = MessageBox.Show("Do you want to recalculate the formula?", "Recalculate", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
    fpSpread1.ActiveSheet.SetValue(0, 1, 100);
    fpSpread1.ActiveSheet.Recalculate();
}
Dim dlg As DialogResult
FpSpread1.ActiveSheet.SetValue(0, 0, 20)
FpSpread1.ActiveSheet.SetValue(0, 1, 10)
FpSpread1.ActiveSheet.SetFormula(3, 0, "SUM(A1,B1)")
dlg = MessageBox.Show("Do you want to recalculate the formula?", "Recalculate", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
    FpSpread1.ActiveSheet.SetValue(0, 1, 100)
    FpSpread1.ActiveSheet.Recalculate()
End If
参照

SheetView クラス
SheetView メンバ
ICalculationSupport インタフェース

開発者ガイド

数式

 

 


© 2004-2015, GrapeCity inc. All rights reserved.