Main Content

slreportgen.report.CCaller.createTemplate

Class: slreportgen.report.CCaller
Package: slreportgen.report

Create C Caller block reporter template

Since R2022a

Syntax

template = slreportgen.report.CCaller.createTemplate(templatePath)

Description

template = slreportgen.report.CCaller.createTemplate(templatePath) creates a copy of the slreportgen.report.CCaller template for the report type specified by type at the location specified by templatePath. Use the copied template as a starting point to design a custom reporter template for your report.

Examples

expand all

Create a copy of the HTML template for the slreportgen.report.CCaller class and save it with the name myTemplate in the mytemplates folder.

template = slreportgen.report.CCaller.createTemplate("mytemplates/myTemplate",'html')

After you modify the template, use it by setting the TemplateSrc property of a C Caller block reporter to the path of the new template file.

Input Arguments

expand all

Path and file name of the new template, specified as a character vector or a 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 based on the specified template type. For example, if the type argument is "pdf", the file name extension is .pdftx.

Version History

Introduced in R2022a