'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.