MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES User's Guide Page 604

  • Download
  • Add to my manuals
  • Print
  • Page
    / 986
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 603
12 Classes – Alphabetical List
12-110
Examples
Append a Word Document to a Report
import mlreportgen.dom.*
info = Document('CompanyInfo','docx');
append(info,'XYZ, Inc., makes widgets.');
close(info);
infoPath = info.OutputPath;
rpt = Document('Report','docx');
open(rpt);
append(rpt,Paragraph('About XYZ, Inc.'));
append(rpt,DOCXSubDoc(infoPath));
close(rpt);
rptview(rpt.OutputPath);
See Also
mlreportgen.dom.DocumentPart | mlreportgen.dom.DOCXSection
Page view 603
1 2 ... 599 600 601 602 603 604 605 606 607 608 609 ... 985 986

Comments to this Manuals

No comments