slreportgen.report.MATLABFunction.createTemplate

Class: slreportgen.report.MATLABFunction
Package: slreportgen.report

Create MATLAB Function reporter template

Syntax

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

Description

template = slreportgen.report.MATLABFunction.createTemplate(templatePath,type) creates a copy of the MATLAB® Function reporter template specified by type at the templatePath location. You can use the copied template as a starting point to design a custom MATLAB Function 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 MATLAB Function Reporter Template

Create a copy of the HTML template for the MATLAB Function reporter.

template = slreportgen.report.MATLABFunction.createTemplate...
     ('mytemplates\myMFunction','html');

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

rptr = slreportgen.report.MATLABFunction;
rptr.TemplateSrc = template;

Introduced in R2018a