MESCIUS SPREAD for ASP.NET 10.0J
AutoCalculation プロパティ (SheetView)

依存セルの内容が変更されたとき、シート内の各数式が自動的に再計算されるかどうかを取得または設定します。
構文
'Declaration
 
Public Property AutoCalculation As Boolean
public bool AutoCalculation {get; set;}

プロパティ値

自動的に再計算する場合は True、それ以外の場合は False
この例では、依存セルの内容が変更されたときにスプレッドシートが各数式を再計算するように設定します。
FarPoint.Web.Spread.SheetView sv = new FarPoint.Web.Spread.SheetView();
FpSpread1.ActiveSheetView.SetValue(0, 0, 9);
FpSpread1.ActiveSheetView.SetValue(1, 0, 5);
FpSpread1.ActiveSheetView.SetFormula(2, 0, "SUM(A1,A2)");
sv = FpSpread1.ActiveSheetView;
if (IsPostBack)
{
    sv.AutoCalculation = true;
}
Dim sv As FarPoint.Web.Spread.SheetView
FpSpread1.ActiveSheetView.SetValue(0, 0, 9)
FpSpread1.ActiveSheetView.SetValue(1, 0, 5)
FpSpread1.ActiveSheetView.SetFormula(2, 0, "SUM(A1,A2)")
sv = FpSpread1.ActiveSheetView
If IsPostBack Then
    sv.AutoCalculation = True
End If
参照

SheetView クラス
SheetView メンバ

開発者の手引き

数式

 

 


© MESCIUS inc. All rights reserved.