Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

WorksheetExtensions.Import(Worksheet, Int64[,], Int32, Int32) Method

Imports data from a two-dimensional array of long integers.

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

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Docs.v19.1.dll

Declaration

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

Parameters

Name Type Description
sheet Worksheet

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

twoDimensionalArray Int64[,]

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

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 row index of the start cell in which the imported data will be inserted.

See Also