mlreportgen.utils.PDFDoc class
Package: mlreportgen.utils
Superclasses:
Wrap PDF file for viewing
Construction
wraps a PDF document file for viewing. The PDF document object is not visible on construction.
To make it visible, use the docobj
= mlreportgen.utils.PDFDoc(filename
)show
method.
Input Arguments
Output Arguments
Properties
Methods
show | Show PDF file
|
hide | Hide PDF file
|
isVisible | Check whether PDF file is visible
|
Examples
Create PDF Doc Object and Make It Visible
docobj = mlreportgen.utils.PDFDoc("MyPDFDoc.pdf");
show(docobj);