XlsWorksheet
ImportCustomObjects Method (ICollection, Int32, Int32, ImportObjectOptions)
|
Imports custom objects into the 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 ImportCustomObjects(
ICollection list,
int firstRow,
int firstColumn,
ImportObjectOptions options
)
Public Function ImportCustomObjects (
list As ICollection,
firstRow As Integer,
firstColumn As Integer,
options As ImportObjectOptions
) As Integer
public:
int ImportCustomObjects(
ICollection^ list,
int firstRow,
int firstColumn,
ImportObjectOptions^ options
)
member ImportCustomObjects :
list : ICollection *
firstRow : int *
firstColumn : int *
options : ImportObjectOptions -> int
Parameters
-
list
-
Type:
System.Collections
ICollection
The collection of custom objects to import.
-
firstRow
-
Type:
System
Int32
The row number where the import should start.
-
firstColumn
-
Type:
System
Int32
The column number where the import should start.
-
options
-
Type:
Spire.Xls
ImportObjectOptions
The import options.
Return Value
Type:
Int32
The number of rows inserted into the worksheet.
See Also