mlreportgen.report.TableOfContents.createTemplate
Class: mlreportgen.report.TableOfContents
Package: mlreportgen.report
Create table of contents section template
Syntax
template = mlreportgen.report.TableOfContents.createTemplate(templatePath,type)
Description
creates a copy of the table of contents (TOC) reporter template specified by
template
= mlreportgen.report.TableOfContents.createTemplate(templatePath
,type
)type
at the location specified by
templatePath
. You can use the copied template as a starting
point to design a custom TOC template for your report.
Input Arguments
Output Arguments
Examples
Create TOC Template
Before you run this example, create a copy of the default HTML
TableOfContents
template in the mytemplates
folder. Name the copied template myTOC.htmtx
. Edit the template
as desired. To use the new template for the TOC, assign its path to the
TableOfContents
TemplateSrc
property.
import mlreportgen.report.* rpt = Report('My Report','html'); toc = TableOfContents(); template = TableOfContents.createTemplate('mytemplates\myTOC','html'); toc.TemplateSrc = template;
Version History
Introduced in R2017b