Main Content

slreportgen.report.BusObject.createTemplate

Class: slreportgen.report.BusObject
Package: slreportgen.report

Create bus object reporter template

Since R2019b

Syntax

template = slreportgen.report.BusObject.createTemplate(templatePath,type)

Description

template = slreportgen.report.BusObject.createTemplate(templatePath,type) creates a copy of the bus object reporter template specified by type at the templatePath location. You can use the copied template as a starting point to design a custom bus object 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 template copy, returned as a string scalar. The specified template type determines the file name extension of the template. For example, if the type argument is 'pdf', the file name extension is .pdftx.

Examples

expand all

Create a copy of the HTML template for the bus object reporter and save it with the name myBusTemplate in the mytemplates folder.

template = slreportgen.report.BusObject.createTemplate...
     ('mytemplates/myBusObjectTemplate','html');

After you modify the template, you can use it by setting the TemplateSrc property of the reporter.

Version History

Introduced in R2019b