slreportgen.report.SimulinkObjectProperties.customizeReporter
Class: slreportgen.report.SimulinkObjectProperties
Namespace: slreportgen.report
Create custom Simulink object properties class
Syntax
reporter = slreportgen.report.SimulinkObjectProperties.customizeReporter(classpath)
Description
reporter = slreportgen.report.SimulinkObjectProperties.customizeReporter(
creates a Simulink® object properties page class definition file that is a subclass of
classpath
)slreportgen.report.SimulinkObjectProperties
. The file is created at
the specified classpath
location. The
SimulinkObjectProperties.customizeReporter
method also copies the
default Simulink object properties templates to the
<classpath>/resources/template
folder. To design a custom
Simulink object properties class for your report, use the new class definition file
as a starting point.
Input Arguments
Output Arguments
Examples
Create Custom Simulink Object Properties Reporter
Create a custom Simulink object properties reporter and its associated default templates. The
derived class file is created at the specified path relative to the current working
folder. In this case, the path to the MySFObjProps.m
class file
is <current working
folder>/newSFObjProps/@MySFObjProps/MySFObjProps.m
. The default title
page templates are in the <current working
folder>/newTitlePage/@MySFObjProps/resources/templates
folder.
import slreportgen.report.* StateflowObjectProperties.customizeReporter... ('newSFObjProps/@MySFObjProps');
After editing this new class file, you can use it as your Simulink object properties reporter.
objprop = MySFObjProps();
Version History
Introduced in R2017b