Spread Silverlight Documentation
GetFormula(Int32,Int32) Method
Example 


The row index.
The column index.
Gets the formula in the specified cell in this sheet.
Syntax
'Declaration
 
Public Function GetFormula( _
   ByVal row As System.Integer, _
   ByVal column As System.Integer _
) As System.String
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim column As System.Integer
Dim value As System.String
 
value = instance.GetFormula(row, column)
public System.string GetFormula( 
   System.int row,
   System.int column
)

Parameters

row
The row index.
column
The column index.

Return Value

Returns the formula string.
Example
This example uses the GetFormula method.
gcSpreadSheet1.Sheets[0].SetFormula(0, 0, "D1+D2");
gcSpreadSheet1.Sheets[0].SetFormula(1, 1, 2, 2, "E1+E1");
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetFormula(0, 0).ToString());
GcSpreadSheet1.Sheets(0).SetFormula(0, 0, "D1+D2")
GcSpreadSheet1.Sheets(0).SetFormula(1, 1, 2, 2, "E1+E1")
ListBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetFormula(0, 0).ToString())
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Worksheet Class
Worksheet Members

 

 


Copyright © GrapeCity, inc. All rights reserved.