import_object_array method

import_object_array

Imports an array of data into a worksheet.

def import_object_array(self, obj_array, first_row, first_column, is_vertical):
    ...
ParameterTypeDescription
obj_arraylistData 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_object_array

Imports an array of data into a worksheet.

def import_object_array(self, obj_array, first_row, first_column, is_vertical, skip):
    ...
ParameterTypeDescription
obj_arraylistData 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.
skipintSkipped number of rows or columns.

See Also