Main Content

slreportgen.report.CFunction.createTemplate

Class: slreportgen.report.CFunction
Package: slreportgen.report

Create C Function block reporter template

Since R2021b

Syntax

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

Description

template = slreportgen.report.CFunction.createTemplate(templatePath,type) creates a copy of the slreportgen.report.CFunction reporter template for the report type specified by type at the location specified by templatePath. You can use the template copy as a starting point to design a custom C Function block reporter 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 slreportgen.report.CFunction reporter and save it with the name myCFunctionTemplate in the mytemplates folder.

template = slreportgen.report.CFunction.createTemplate...
     ('mytemplates/myCFunctionTemplate','html');

After you modify the template, you can use it by setting the TemplateSrc property of a CFunction reporter to the path of the template file.

Version History

Introduced in R2021b