import_array method
Contents
[
Hide
]import_array(self, string_array, first_row, first_column, is_vertical)
Imports an array of string into a worksheet.
def import_array(self, string_array, first_row, first_column, is_vertical):
...
| Parameter | Type | Description |
|---|---|---|
| string_array | list | String array. |
| first_row | int | The row number of the first cell to import in. |
| first_column | int | The column number of the first cell to import in. |
| is_vertical | bool | Specifies to import data vertically or horizontally. |
import_array(self, int_array, first_row, first_column, is_vertical)
Imports an array of integer into a worksheet.
def import_array(self, int_array, first_row, first_column, is_vertical):
...
| Parameter | Type | Description |
|---|---|---|
| int_array | list | Integer array. |
| first_row | int | The row number of the first cell to import in. |
| first_column | int | The column number of the first cell to import in. |
| is_vertical | bool | Specifies to import data vertically or horizontally. |
import_array(self, double_array, first_row, first_column, is_vertical)
Imports an array of double into a worksheet.
def import_array(self, double_array, first_row, first_column, is_vertical):
...
| Parameter | Type | Description |
|---|---|---|
| double_array | list | Double array. |
| first_row | int | The row number of the first cell to import in. |
| first_column | int | The column number of the first cell to import in. |
| is_vertical | bool | Specifies to import data vertically or horizontally. |
See Also
- module
aspose.cells - class
Cells