Gets the formula, as an expression, in the cell at the specified row and column.
Syntax
Parameters
- row
- Row index
- column
- Column index
Return Value
Expression containing the formula
Example
C# | Copy Code |
---|
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());
|
Visual Basic | Copy Code |
---|
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()) |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also