PowerTools SPREAD for ASP.NET 8.0J
SetExpression メソッド (IExpressionSupport)

行インデックス
列インデックス
数式
指定した行と列のセルに数式を式として 設定します。
構文
'Declaration
 
Sub SetExpression( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal value As Expression _
) 
void SetExpression( 
   int row,
   int column,
   Expression value
)

パラメータ

row
行インデックス
column
列インデックス
value
数式
FarPoint.Web.Spread.Model.IExpressionSupport ems; 
FarPoint.CalcEngine.Expression one = new FarPoint.CalcEngine.DoubleExpression(1.0); 
FarPoint.CalcEngine.Expression two = new FarPoint.CalcEngine.DoubleExpression(2.0); 
FarPoint.CalcEngine.Expression oneplustwo = new FarPoint.CalcEngine.BinaryOperatorExpression(FarPoint.CalcEngine.BinaryOperatorInfo.AddOperator, one, two); 
ems = (FarPoint.Web.Spread.Model.IExpressionSupport)FpSpread1.ActiveSheetView.DataModel; 
ems.SetExpression(0, 0, oneplustwo); 
Response.Write("The type of expression is " + ems.GetExpression(0, 0).ToString());
Dim ems As FarPoint.Web.Spread.Model.IExpressionSupport
Dim one As FarPoint.CalcEngine.Expression
Dim two As FarPoint.CalcEngine.Expression
Dim oneplustwo As FarPoint.CalcEngine.Expression
one = New FarPoint.CalcEngine.DoubleExpression(1.0)
two = New FarPoint.CalcEngine.DoubleExpression(2.0)
oneplustwo = New FarPoint.CalcEngine.BinaryOperatorExpression(FarPoint.CalcEngine.BinaryOperatorInfo.AddOperator, one, two)
ems = FpSpread1.ActiveSheetView.DataModel
ems.SetExpression(0, 0, oneplustwo)
Response.Write("The type of expression is " & ems.GetExpression(0, 0).ToString())
参照

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

 

 


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