Skip to main content
Row

WorksheetExtensions.Import(Worksheet, Object[,], Int32, Int32, DataImportOptions) Method

Imports data from a two-dimensional array of objects.

You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use this method in production code.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Docs.v23.2.dll

NuGet Package: DevExpress.Document.Processor

Declaration

public static void Import(
    this Worksheet sheet,
    object[,
    ] twoDimensionalArray,
    int firstRowIndex,
    int firstColumnIndex,
    DataImportOptions options
)

Parameters

Name Type Description
sheet Worksheet

A Worksheet that is the worksheet to which the data is imported.

twoDimensionalArray Object[,]

A two-dimensional array of objects that is the source of data.

firstRowIndex Int32

An integer that is the row index of the start cell in which the imported data will be inserted.

firstColumnIndex Int32

An integer that is the column index of the start cell in which the imported data will be inserted.

options DataImportOptions

A DataImportOptions object containing data import options, parameters and converter.

See Also