MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Uživatelská příručka Strana 897

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 986
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 896
Create and Format Text
13-45
if passed
status = 'Passed';
statusStyle = 'Pass';
else
status = 'Failed';
statusStyle = 'Fail';
end
t2 = Text(status,statusStyle);
statusPara = Paragraph(t1);
append(statusPara,t2);
append(rpt, statusPara);
close(rpt);
rptview(rpt.OutputPath);
Override Template Formats
You can use programmatic formats to override the formats defined in a template-based
style. For example, suppose you define a style named AlertLevel in your template and
set the color to be green by default. You can override the style in your report program to
set a color based on the current alert level. For example:
t = Text('Danger!','AlertLevel');
t.Color = 'red';
See Also
Classes
mlreportgen.dom.Bold | mlreportgen.dom.CharEntity |
mlreportgen.dom.FontFamily | mlreportgen.dom.FontSize |
mlreportgen.dom.Italic | mlreportgen.dom.Strike | mlreportgen.dom.Text
| mlreportgen.dom.Underline
Related Examples
“Add Content to a Report” on page 13-11
More About
“Report Formatting Approaches” on page 13-20
Zobrazit stránku 896
1 2 ... 892 893 894 895 896 897 898 899 900 901 902 ... 985 986

Komentáře k této Příručce

Žádné komentáře