import_excel_file method

import_excel_file(self, file_name)

Imports the excel file from the file path.


def import_excel_file(self, file_name):
    ...
ParameterTypeDescription
file_nameSystem.StringThe full path of the file.

import_excel_file(self, uid, file_name)

Imports the excel file from the file path.


def import_excel_file(self, uid, file_name):
    ...
ParameterTypeDescription
uidSystem.StringThe unique id for the file cache, if set to null,it will be generated automatically.
file_nameSystem.StringThe full path of the file.

import_excel_file(self, filestream, format)

Imports the excel file from file stream with load format.


def import_excel_file(self, filestream, format):
    ...
ParameterTypeDescription
filestreamio.RawIOBaseThe stream of the excel file .
formataspose.cellsgridjs.GridLoadFormatThe LoadFormat of the excel file.

import_excel_file(self, uid, file_name, password)

Imports the excel file from file path and open password.


def import_excel_file(self, uid, file_name, password):
    ...
ParameterTypeDescription
uidSystem.StringThe unique id for the file cache, if set to null,it will be generated automatically.
file_nameSystem.StringThe full path of the file.
passwordSystem.StringThe open password of the excel file.The value can be null If no passowrd is set.

import_excel_file(self, uid, filestream, format)

Imports the excel file from file stream.


def import_excel_file(self, uid, filestream, format):
    ...
ParameterTypeDescription
uidSystem.StringThe unique id for the file cache, if set to null,it will be generated automatically.
filestreamio.RawIOBaseThe stream of the excel file .
formataspose.cellsgridjs.GridLoadFormatThe LoadFormat of the excel file.

import_excel_file(self, filestream, format, password)

Imports the excel file from file stream with load format and open password.


def import_excel_file(self, filestream, format, password):
    ...
ParameterTypeDescription
filestreamio.RawIOBaseThe stream of the excel file .
formataspose.cellsgridjs.GridLoadFormatThe LoadFormat of the excel file.
passwordSystem.StringThe open password of the excel file.The value can be null If no passowrd is set.

import_excel_file(self, uid, filestream, format, password)

Imports the excel file from file stream with load format and open password.


def import_excel_file(self, uid, filestream, format, password):
    ...
ParameterTypeDescription
uidSystem.StringThe unique id for the file cache, if set to null,it will be generated automatically.
filestreamio.RawIOBaseThe stream of the excel file .
formataspose.cellsgridjs.GridLoadFormatThe LoadFormat of the excel file.
passwordSystem.StringThe open password of the excel file.The value can be null If no passowrd is set

See Also