Spread Windows Forms 6.0 Product Documentation
GetFormula Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > IExpressionSupport Interface : GetFormula Method


row
Row index
column
Column index

Glossary Item Box

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

Syntax

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

Parameters

row
Row index
column
Column index

Return Value

String containing the formula

Example

This example specifies and returns the formula for the given index
C#Copy Code
FarPoint.Win.Spread.Model.IExpressionSupport ems;
ems = (FarPoint.Win.Spread.Model.IExpressionSupport)fpSpread1.ActiveSheet.Models.Data;
fpSpread1.ActiveSheet.SetValue(0, 0, 5);
fpSpread1.ActiveSheet.SetValue(1, 0, 5);
ems.SetFormula(2, 0, "SUM(A1, A2)")
Label1.Text = "The formula is " + ems.GetFormula(2, 0).ToString();
Visual BasicCopy Code
Dim ems As FarPoint.Win.Spread.Model.IExpressionSupport
ems = FpSpread1.ActiveSheet.Models.Data
FpSpread1.ActiveSheet.SetValue(0, 0, 5)
FpSpread1.ActiveSheet.SetValue(1, 0, 5)
ems.SetFormula(2, 0, "SUM(A1, A2)")
Label1.Text = "The formula is " & ems.GetFormula(2, 0).ToString()

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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