Spread Windows Forms 10.0 Product Documentation
BooleanValue Property
Example 


Gets the boolean value as a boolean.
Syntax
'Declaration
 
Public ReadOnly Property BooleanValue As Boolean
'Usage
 
Dim instance As BooleanExpression
Dim value As Boolean
 
value = instance.BooleanValue
public bool BooleanValue {get;}

Property Value

Boolean object containing the boolean value
Example
This example creates a boolean expression.
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);
bool b = arg1.BooleanValue;
MessageBox.Show(b);
//Spread for Web Forms
((FarPoint.Web.Spread.Model.IExpressionSupport)FpSpread1.Sheets[0].DataModel).SetExpression(0, 0, arg1);
bool b = arg1.BooleanValue;
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 Boolean = arg1.BooleanValue
MsgBox(b)
'Spread for Web Forms
CType(FpSpread1.Sheets(0).DataModel, FarPoint.Web.Spread.Model.IExpressionSupport).SetExpression(0, 0, arg1)
Dim b As Boolean = arg1.BooleanValue
TextBox1.Text = b
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

BooleanExpression Class
BooleanExpression Members

 

 


Copyright © GrapeCity, inc. All rights reserved.