MESCIUS SPREAD for Windows Forms 15.0J
Value プロパティ (BooleanExpression)
使用例 

ブール値
構文
'宣言
 
Public ReadOnly Property Value As Object
public object Value {get;}

プロパティ値

値を含むObject
使用例
次のサンプルコードは、ブール式を作成します。
FarPoint.CalcEngine.BooleanExpression arg1 = new FarPoint.CalcEngine.BooleanExpression(true);
//Spread for Windows Forms
((FarPoint.Win.Spread.Model.IExpressionSupport)fpSpread1.ActiveSheet.Models.Data).SetExpression(0, 0, arg1);
object b = arg1.Value;
MessageBox.Show(b);
//Spread for Web Forms
((FarPoint.Web.Spread.Model.IExpressionSupport)FpSpread1.Sheets[0].DataModel).SetExpression(0, 0, arg1);
object b = arg1.Value;
TextBox1.Text = b.ToString();
Dim arg1 As New FarPoint.CalcEngine.BooleanExpression(True)
'Spread for Windows Forms
CType(FpSpread1.ActiveSheet.Models.Data, FarPoint.Win.Spread.Model.IExpressionSupport).SetExpression(0, 0, arg1)
Dim b As Object = arg1.Value
MsgBox(b)
'Spread for Web Forms
CType(FpSpread1.Sheets(0).DataModel, FarPoint.Web.Spread.Model.IExpressionSupport).SetExpression(0, 0, arg1)
Dim b As Object = arg1.Value
TextBox1.Text = b
参照

BooleanExpression クラス
BooleanExpression メンバ

 

 


© MESCIUS inc. All rights reserved.