import_array method

import_array

Imports an array of string into a worksheet.

def import_array(self, string_array, first_row, first_column, is_vertical):
    ...
ParameterTypeDescription
string_arraylistString array.
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.
is_verticalboolSpecifies to import data vertically or horizontally.

import_array

Imports an array of integer into a worksheet.

def import_array(self, int_array, first_row, first_column, is_vertical):
    ...
ParameterTypeDescription
int_arraylistInteger array.
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.
is_verticalboolSpecifies to import data vertically or horizontally.

import_array

Imports an array of double into a worksheet.

def import_array(self, double_array, first_row, first_column, is_vertical):
    ...
ParameterTypeDescription
double_arraylistDouble array.
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.
is_verticalboolSpecifies to import data vertically or horizontally.

See Also