[]
Gets an object array from a specified range of cells.
public object[,] GetArray(int row, int column, int rowCount, int columnCount)
Public Function GetArray(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer) As Object(,)
Type | Name | Description |
---|---|---|
int | row | Row index of the cell from which to read into the array |
int | column | Column index of the cell from which to read into the array |
int | rowCount | Number of rows in the array |
int | columnCount | Number of columns in the array |
Type | Description |
---|---|
object[,] |
Gets an object array from a specified range of cells.
public object[,] GetArray(int row, int column, int rowCount, int columnCount, bool formula)
Public Function GetArray(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, formula As Boolean) As Object(,)
Type | Name | Description |
---|---|---|
int | row | Row index of the cell from which to read into the array |
int | column | Column index of the cell from which to read into the array |
int | rowCount | Number of rows in the array |
int | columnCount | Number of columns in the array |
bool | formula | If true, return formulas; otherwise, return values. |
Type | Description |
---|---|
object[,] |