Skip to content

rephrase.Report (+rephrase)

Create a Report object for rephrase reports

Syntax

output = rephrase.Report(title, varargin)

Input arguments

title [ string ]

Report name.

Output arguments

output [ Report ]

Report type object with the assigned arguements to be passed into the rephrase objects.

Options

Subtitle= [ string ]

Subtitle text.

Footer= [ string ]

Footer text.

InteractiveCharts=true [ true* | false ]

Flag which enables the graph interaction by default and can be set to false.

TableOfContents=false [ true | false* ]

Flag disables the table of contents generation by default and can be set to false.

TableOfContentsDepth=1 [ numeric ]

The options sets the table of contents depth.

Logo=false [ true | false* ]

Flag disables the logo by default and can be set to false.

Possible children

+rephrase/Grid +rephrase/Table +rephrase/Chart +rephrase/SeriesChart +rephrase/CurveChart +rephrase/Text +rephrase/Pagebreak +rephrase/Matrix +rephrase/Pager +rephrase/Section

Description

The function +rephrase/Report returns the Report object based on the input arguments and options set by the user.

Examples

report = rephrase.Report( ...
    "Title" ...
    , "Subtitle", "Subtitle" ...
    , "Footer", "See end pages for further important disclaimer." ...
    , "InteractiveCharts", true ...
);