MESCIUS SPREAD for ASP.NET 10.0J
GetFormula メソッド (IExpressionSupport)

行インデックス
列インデックス
指定した行と列のセルの数式を文字列として 取得します。
構文
'Declaration
 
Function GetFormula( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As String
string GetFormula( 
   int row,
   int column
)

パラメータ

row
行インデックス
column
列インデックス

戻り値の型

数式を含むString
FarPoint.Web.Spread.Model.IExpressionSupport ems; 
ems = (FarPoint.Web.Spread.Model.IExpressionSupport)FpSpread1.ActiveSheetView.DataModel; 
FpSpread1.ActiveSheetView.SetValue(0, 0, 5); 
FpSpread1.ActiveSheetView.SetValue(1, 0, 5); 
ems.SetFormula(2, 0, "SUM(A1, A2)"); 
Response.Write("The formula is " & ems.GetFormula(2, 0).ToString());
Dim ems As FarPoint.Web.Spread.Model.IExpressionSupport
ems = FpSpread1.ActiveSheetView.DataModel
FpSpread1.ActiveSheetView.SetValue(0, 0, 5)
FpSpread1.ActiveSheetView.SetValue(1, 0, 5)
ems.SetFormula(2, 0, "SUM(A1, A2)")
Response.Write("The formula is " & ems.GetFormula(2, 0).ToString()) 
参照

IExpressionSupport インタフェース
IExpressionSupport メンバ

 

 


© MESCIUS inc. All rights reserved.