Spread WPF Documentation
FindFormulas Method
Example 


The start row.
The start column.
The row count.
The column count.
Gets formulas in the specified area.
Syntax
'Declaration
 
Public Function FindFormulas( _
   ByVal row As System.Integer, _
   ByVal column As System.Integer, _
   ByVal rowCount As System.Integer, _
   ByVal columnCount As System.Integer _
) As System.Object(,)
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim column As System.Integer
Dim rowCount As System.Integer
Dim columnCount As System.Integer
Dim value() As System.Object
 
value = instance.FindFormulas(row, column, rowCount, columnCount)
public System.object[,] FindFormulas( 
   System.int row,
   System.int column,
   System.int rowCount,
   System.int columnCount
)

Parameters

row
The start row.
column
The start column.
rowCount
The row count.
columnCount
The column count.

Return Value

Two dimensional array. The first dimension saves the cell range and the second dimension saves the formula related to the cell range.
Example
This example uses the FindFormulas method.
Object[,] arr;
gcSpreadSheet1.Sheets[0].Cells[1, 1].Formula = "D1+E1";
arr = gcSpreadSheet1.Sheets[0].FindFormulas(0, 0, 2, 2);
listBox1.Items.Add(arr[0, 0].ToString());
Dim arr As [Object](,)
GcSpreadSheet1.Sheets(0).Cells(1, 1).Formula = "D1+E1"
arr = GcSpreadSheet1.Sheets(0).FindFormulas(0, 0, 2, 2)
ListBox1.Items.Add(arr(0, 0).ToString())
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

Worksheet Class
Worksheet Members

 

 


Copyright © GrapeCity, inc. All rights reserved.