Spread for ASP.NET 7.0 Product Documentation
SetFormula Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > IExpressionSupport Interface : SetFormula Method


row
Row index
column
Column index
value
Formula

Glossary Item Box

Sets the formula, as a string, in the cell at the specified row and column.

Syntax

Visual Basic (Declaration) 
Sub SetFormula( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal value As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As IExpressionSupport
Dim row As Integer
Dim column As Integer
Dim value As String
 
instance.SetFormula(row, column, value)
C# 
void SetFormula( 
   int row,
   int column,
   string value
)

Parameters

row
Row index
column
Column index
value
Formula

Example

C#Copy Code
FarPoint.Web.Spread.Model.IExpressionSupport ems; 
ems = (FarPoint.Web.Spread.Model.IExpressionSupport)FpSpread1.ActiveSheetView.DataModel; 
FpSpread1.ActiveSheetView.SetValue(0, 0, 5); 
FpSpread1.ActiveSheetView.SetValue(1, 0, 5); 
ems.SetFormula(2, 0, "SUM(A1, A2)"); 
Response.Write("The formula is " & ems.GetFormula(2, 0).ToString());
Visual BasicCopy Code
Dim ems As FarPoint.Web.Spread.Model.IExpressionSupport
ems = FpSpread1.ActiveSheetView.DataModel
FpSpread1.ActiveSheetView.SetValue(0, 0, 5)
FpSpread1.ActiveSheetView.SetValue(1, 0, 5)
ems.SetFormula(2, 0, "SUM(A1, A2)")
Response.Write("The formula is " & ems.GetFormula(2, 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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.