MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Guide de l'utilisateur Page 942

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 986
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 941
13 Create a Report Program
13-90
import mlreportgen.dom.*
d = Document('MyReport','docx','MyReportTemplate');
for rank = 3:5
chapterPart = DocumentPart(d,'Chapter');
while ~strcmp(chapterPart.CurrentHoleId,'#end#')
switch chapterPart.CurrentHoleId
case 'ChapterTitle'
append(chapterPart, ...
sprintf('Rank %i Magic Square',rank));
case 'ChapterContent'
table = append(chapterPart,magic(rank));
table.Width = '2in';
end
moveToNextHole(chapterPart);
end
append(d, chapterPart);
end
close(d);
rptview(d.OutputPath);
You can use a similar approach to automatically number HTML reports, using the CSS
counter-increment and content properties in the template for your report.
See Also
Functions
mlreportgen.dom.Document.createAutoNumberStream |
mlreportgen.dom.Document.getAutoNumberStream
Classes
mlreportgen.dom.AutoNumber | mlreportgen.dom.AutoNumberStream |
mlreportgen.dom.CounterInc | mlreportgen.dom.CounterReset
Vue de la page 941
1 2 ... 937 938 939 940 941 942 943 944 945 946 947 ... 985 986

Commentaires sur ces manuels

Pas de commentaire