IExcelFilesCreator

Summary

Represents an Excel files creator object.

Methods

Structure

class IExcelFilesCreator
createExcelFile(filePath: str, defaultWorksheetName: str) IExcelFile

Creates and returns an excel file given its desired path and the default worksheet's name.

Parameters
  • filePath (str) – Desired file path for the excel file.

  • defaultWorksheetName (str) – Default worksheet name.

Returns

Created file.

Return type

IExcelFile

exportExecutionReport(filePath: str)

Exports the execution report a the current project to an excel file.

Parameters

filePath (str) – Excel file path.

openExcelFile(xlsxFilePath: str) IExcelFile

Opens and returns an excel file given its path.

Parameters

xlsxFilePath (str) – Excel file path

Returns

Opened file.

Return type

IExcelFile