[]
        
(Showing Draft Content)

FarPoint.Web.Spread.Model.DefaultSheetDataModel.GetArray

GetArray Method

GetArray(int, int, int, int)

Gets an object array from a specified range of cells.

Declaration
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(,)
Parameters
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

Returns
Type Description
object[,]
Implements

GetArray(int, int, int, int, bool)

Gets an object array from a specified range of cells.

Declaration
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(,)
Parameters
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.

Returns
Type Description
object[,]