FarPoint.Web.Spread 名前空間 > SheetView クラス : GetFormula メソッド |
数式で使用できる演算子と関数のリストについては、「Spread for .NETの数式リファレンス」を参照してください。
Spreadコンポーネントは絶対セル参照と相対セル参照を使用できます。スプレッドシートのセル参照スタイルは、ReferenceStyleプロパティを使用して定義します。絶対行(または列)参照と相対行(または列)参照を同時に数式に含めることはできません。
FarPoint.Web.Spread.SheetView sv; string s; sv = FpSpread1.ActiveSheetView; sv.SetFormula(0, 0, "4*4"); s = sv.GetFormula(0, 0); Response.Write("The formula for the cell is a " + s);
Dim sv As FarPoint.Web.Spread.SheetView Dim s As String sv = FpSpread1.ActiveSheetView sv.SetFormula(0, 0, "4*4") s = sv.GetFormula(0, 0) Response.Write("The formula for the cell is a " & s)