mlreportgen.report.Section.createTemplate

Class: mlreportgen.report.Section
Package: mlreportgen.report

Create section template

Syntax

Description

creates a copy of the default section reporter template specified by type at the location specified by templatePath. You can use the copied template as a starting point to design a custom section template for your report.

Input Arguments

expand all

Path and file name of the new template, specified as a character vector or string scalar.

Type of template, specified as 'html', 'html-file', 'docx', or 'pdf'.

Output Arguments

expand all

Path and file name of the copy of the template, returned as a string scalar. The file name extension of the template is assigned based on the specified template type. For example, if the type argument is 'pdf', the file name extension is .pdftx.

Examples

Create Section Template

Before you run this example, create a copy of the default HTML Section template in the mytemplates folder. Name the copied template mySection.htmtx. Edit the template as desired. To use the new template for the section, assign its path to the Section TemplateSrc property.

import mlreportgen.report.*
rpt = Report('My Report','html');
sec = Section();
sec.Title = 'Data Summary';
template = Section.createTemplate('mytemplates\mySection','html');
tp.TemplateSrc = template;

Introduced in R2017b