mlreportgen.utils.HTMXDoc class
Package: mlreportgen.utils
Superclasses:
Wrap HTMX document file for viewing
Construction
wraps an HTMX document file and returns it as an HTMX doc object. The HTMX doc object is not
visible on construction. To make it visible, use the docobj
= mlreportgen.utils.HTMXDoc(filename
)show
method.
Input Arguments
Output Arguments
Properties
Methods
show | Show HTMX file
|
hide | Hide HTMX file
|
isVisible | Test whether HTMX file is visible
|
Examples
Create HTMX Doc Object and Make It Visible
This example wraps the existing MyHTMXDoc.html
file into an HTMXDoc
object.
docobj = mlreportgen.utils.HTMXDoc("MyHTMXDoc.htmx");
show(docobj);