Class: mlreportgen.report.RptFile
Package: mlreportgen.report
Create Report Explorer-based (RptFile) reporter template
template = mlreportgen.report.RptFile.createTemplate(templatePath,type)
creates a copy of the default Report Explorer-based reporter (template
= mlreportgen.report.RptFile.createTemplate(templatePath
,type
)RptFile
) template
specified by type
at the templatePath
location. You
can use the copied template as a starting point to design a custom RptFile
reporter template for your report.
Before you run this example, create a Report Explorer setup file (see Create a New Setup File) or
use an existing setup file. In this example, the setup file is named
mysetupfile.rpt
. Then, create a copy of the default HTML
RptFile
template and edit it as desired. The copied template file in this
example is named myrptfile.htmtx
and is saved in a folder named
mytemplates
. To use the new template for the RptFile
reporter, assign its path to the RptFile
TemplateSrc property.
import mlreportgen.report.* rpt = Report('My Report','html'); rptfile = RptFile('mysetupfile.rpt'); template = RptFile.createTemplate('mytemplates\myrptfile','html'); rptfile.TemplateSrc = template;