import_custom_objects method

import_custom_objects

Imports custom objects.

Returns

Total number of rows imported.

def import_custom_objects(self, list, first_row, first_column, options):
    ...
ParameterTypeDescription
listlistThe custom object
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.
optionsImportTableOptionsThe import options.

Remarks

The custom objects should be the same type.

import_custom_objects

Imports custom objects.

Returns

Total number of rows imported.

def import_custom_objects(self, list, property_names, is_property_name_shown, first_row, first_column, row_number, insert_rows, date_format_string, convert_string_to_number):
    ...
ParameterTypeDescription
listlistThe custom object
property_nameslistThe property names.If it is null,we will import all properties of the object.
is_property_name_shownboolIndicates whether the property name will be imported to the first row.
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.
row_numberintNumber of rows to be imported.
insert_rowsboolIndicates whether extra rows are added to fit data.
date_format_stringstrDate format string for cells.
convert_string_to_numberboolIndicates if this method will try to convert string to number.

Remarks

The custom objects should be the same type.

See Also