Spread Windows Forms 12.0 Product Documentation
SetExpression Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > IExpressionSupport Interface : SetExpression Method
Row index
Column index
Formula
Sets the formula, as an expression, in the cell at the specified row and column.
Syntax
'Declaration
 
Sub SetExpression( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal value As Expression _
) 
'Usage
 
Dim instance As IExpressionSupport
Dim row As Integer
Dim column As Integer
Dim value As Expression
 
instance.SetExpression(row, column, value)
void SetExpression( 
   int row,
   int column,
   Expression value
)

Parameters

row
Row index
column
Column index
value
Formula
Example
This example specifies and returns the expression for the given index.
FarPoint.Win.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.Win.Spread.Model.IExpressionSupport)fpSpread1.ActiveSheet.Models.Data;
ems.SetExpression(0, 0, oneplustwo);
label1.Text = "The type of expression is " + ems.GetExpression(0, 0).ToString();
Dim ems As FarPoint.Win.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.ActiveSheet.Models.Data
ems.SetExpression(0, 0, oneplustwo)
Label1.Text = "The type of expression is " & ems.GetExpression(0, 0).ToString()
See Also

Reference

IExpressionSupport Interface
IExpressionSupport Members