Any object is "printable" if it implements the IPrintable interface.
To do this it, it must have a method called Printing.symbol which returns either a function
to print the object or null if it cannot be printed.
One way of printing is to use the printWidget function, which creates a hidden iframe
and copies the DOM nodes from your widget to that iframe and printing just that iframe.
Another way to print is to use the printURL function, which takes a URL and prints that page.
Any object is "printable" if it implements the
IPrintable
interface.To do this it, it must have a method called
Printing.symbol
which returns either a function to print the object or null if it cannot be printed.One way of printing is to use the
printWidget
function, which creates a hidden iframe and copies the DOM nodes from your widget to that iframe and printing just that iframe.Another way to print is to use the
printURL
function, which takes a URL and prints that page.