Class: mlreportgen.dom.Document
Package: mlreportgen.dom
Append HTML file contents to document
htmlObjOut = addHTMLFile(documentObj,htmlFilePath)
appends HTML file contents to a document. htmlObjOut
= addHTMLFile(documentObj
,htmlFilePath
)
MATLAB
Report Generator™ mlreportgen.dom.HTML
or mlreportgen.dom.HTMLFile
objects typically cannot accept the raw HTML output of third-party applications, such as Microsoft® Word, that export native documents as HTML markup. In these cases, your Report API report generation program can use the mlreportgen.utils.html2dom.prepHTMLString
and mlreportgen.utils.html2dom.prepHTMLFile
functions to prepare the raw HTML for use with the mlreportgen.dom.HTML
or mlreportgen.dom.HTMLFile
objects. Typically, your program will have to further process the prepared HTML to remove valid but undesirable objects, such as line feeds that were in the raw content.
By default, the DOM API uses a base font size of 12 points to
convert em
units to actual font sizes. For example, a font size specified as
2em
converts to 24 points. To specify a different base font size, add
your content to a report by using an mlreportgen.dom.HTML
object. Set the
EMBaseFontSize
property of the object to the base font size. For
example, if you set the EMBaseFontSize
property to 14, a font size of
2em
converts to 28 points.
mlreportgen.dom.HTML
| mlreportgen.dom.HTMLFile
| mlreportgen.utils.html2dom.prepHTMLFile
| mlreportgen.utils.html2dom.prepHTMLString