PrinterInfo Object
The PrinterInfo object provides information about a printer.
Members Table
The following table lists the members provided by the PrinterInfo object.
Remarks
This object is available through the collection Printers.
Use the PrinterInfo object to receive information about a printer and its print jobs.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example displays the number of print jobs of the first available printer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).JobCount);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top