PowerTools SPREAD for Windows Forms 8.0J
BinaryOperatorExpression コンストラクタ


演算子
左側のオペランド
右側のオペランド
オペランドのペアに適用される二項演算子を使用して新しい式を作成します。
構文
'Declaration
 
Public Function New( _
   ByVal oper As BinaryOperatorInfo, _
   ByVal arg0 As Expression, _
   ByVal arg1 As Expression _
)
'使用法
 
Dim oper As BinaryOperatorInfo
Dim arg0 As Expression
Dim arg1 As Expression
 
Dim instance As New BinaryOperatorExpression(oper, arg0, arg1)
public BinaryOperatorExpression( 
   BinaryOperatorInfo oper,
   Expression arg0,
   Expression arg1
)

パラメータ

oper
演算子
arg0
左側のオペランド
arg1
右側のオペランド
例外
例外説明
System.ArgumentNullExceptionoper、arg0、arg1のいずれかがNull参照(Visual BasicではNothing)です。
次のサンプルコードは、オペランドのペアに適用される二項演算子を使用して新しい式を作成します。
FarPoint.CalcEngine.Expression arg1 = new FarPoint.CalcEngine.DoubleExpression(1.0);
FarPoint.CalcEngine.Expression arg2 = new FarPoint.CalcEngine.DoubleExpression(2.0);
FarPoint.CalcEngine.Expression oneplustwo = new FarPoint.CalcEngine.BinaryOperatorExpression(FarPoint.CalcEngine.BinaryOperatorInfo.AddOperator,arg1, arg2);
//Spread for Windows Forms
((FarPoint.Win.Spread.Model.IExpressionSupport)fpSpread1.ActiveSheet.Models.Data).SetExpression(0, 0, oneplustwo);
//Spread for Web Forms
((FarPoint.Web.Spread.Model.IExpressionSupport)FpSpread1.Sheets[0].DataModel).SetExpression(0, 0, oneplustwo);
Dim arg1 As FarPoint.CalcEngine.Expression
Dim arg2 As FarPoint.CalcEngine.Expression
Dim oneplustwo As FarPoint.CalcEngine.Expression
arg1 = New FarPoint.CalcEngine.DoubleExpression(1.0)
arg2 = New FarPoint.CalcEngine.DoubleExpression(2.0)
oneplustwo = New FarPoint.CalcEngine.BinaryOperatorExpression(FarPoint.CalcEngine.BinaryOperatorInfo.AddOperator, arg1, arg2)
'Spread for Windows Forms
CType(FpSpread1.ActiveSheet.Models.Data, FarPoint.Win.Spread.Model.IExpressionSupport).SetExpression(0, 0, oneplustwo)
'Spread for Web Forms
CType(FpSpread1.Sheets(0).DataModel, FarPoint.Web.Spread.Model.IExpressionSupport).SetExpression(0, 0, oneplustwo)
参照

BinaryOperatorExpression クラス
BinaryOperatorExpression メンバ

 

 


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