WorksheetExtensions.Import(Worksheet, String[], Int32, Int32, Boolean) Method
Imports data from an one-dimensional array of strings.
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.v24.1.dll
NuGet Package: DevExpress.Document.Processor
Declaration
public static void Import(
this Worksheet sheet,
string[] array,
int firstRowIndex,
int firstColumnIndex,
bool isVertical
)
Parameters
Name | Type | Description |
---|---|---|
sheet | Worksheet | A Worksheet that is the worksheet to which the data is imported. |
array | String[] | A one-dimensional array of strings 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 column index of the start cell in which the imported data will be inserted. |
isVertical | Boolean | true to insert imported data vertically; otherwise, false |
Remarks
The Import imports data from a one-dimensional array of strings and enables you to specify how to place array data in cells - vertically or horizontally.