XlsWorksheet
InsertArrayList Method (ArrayList, Int32, Int32, Boolean)
|
Imports an arraylist of data into a worksheet.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public int InsertArrayList(
ArrayList arrayList,
int firstRow,
int firstColumn,
bool isVertical
)
Public Function InsertArrayList (
arrayList As ArrayList,
firstRow As Integer,
firstColumn As Integer,
isVertical As Boolean
) As Integer
public:
int InsertArrayList(
ArrayList^ arrayList,
int firstRow,
int firstColumn,
bool isVertical
)
member InsertArrayList :
arrayList : ArrayList *
firstRow : int *
firstColumn : int *
isVertical : bool -> int
Parameters
-
arrayList
-
Type:
System.Collections
ArrayList
Data arraylist.
-
firstRow
-
Type:
System
Int32
The row number of the first cell to import in.
-
firstColumn
-
Type:
System
Int32
The column number of the first cell to import in.
-
isVertical
-
Type:
System
Boolean
Specifies to import data vertically or horizontally.
Return Value
Type:
Int32
See Also