Cells.ImportObjectArray

ImportObjectArray(object[], int, int, bool)

Imports an array of data into a worksheet.

public void ImportObjectArray(object[] objArray, int firstRow, int firstColumn, bool isVertical)
ParameterTypeDescription
objArrayObject[]Data array.
firstRowInt32The row number of the first cell to import in.
firstColumnInt32The column number of the first cell to import in.
isVerticalBooleanSpecifies to import data vertically or horizontally.

See Also


ImportObjectArray(object[], int, int, bool, int)

Imports an array of data into a worksheet.

public void ImportObjectArray(object[] objArray, int firstRow, int firstColumn, bool isVertical, 
    int skip)
ParameterTypeDescription
objArrayObject[]Data array.
firstRowInt32The row number of the first cell to import in.
firstColumnInt32The column number of the first cell to import in.
isVerticalBooleanSpecifies to import data vertically or horizontally.
skipInt32Skipped number of rows or columns.

See Also