Cells.ImportArray

ImportArray(string[], int, int)

public void ImportArray(string[] stringArray, int firstRow, int firstColumn)

See Also


ImportArray(string[], int, int, bool)

Imports an array of string into a worksheet.

public void ImportArray(string[] stringArray, int firstRow, int firstColumn, bool isVertical)
ParameterTypeDescription
stringArrayString[]String 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


ImportArray(int[], int, int)

public void ImportArray(int[] intArray, int firstRow, int firstColumn)

See Also


ImportArray(int[], int, int, bool)

Imports an array of integer into a worksheet.

public void ImportArray(int[] intArray, int firstRow, int firstColumn, bool isVertical)
ParameterTypeDescription
intArrayInt32[]Integer 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


ImportArray(double[], int, int)

public void ImportArray(double[] doubleArray, int firstRow, int firstColumn)

See Also


ImportArray(double[], int, int, bool)

Imports an array of double into a worksheet.

public void ImportArray(double[] doubleArray, int firstRow, int firstColumn, bool isVertical)
ParameterTypeDescription
doubleArrayDouble[]Double 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