Print Method
The Print method prints the job.
Syntax
[bool=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
Print()
|
Return Value
Returns a Boolean value that indicates whether the function succeeded.
Remarks
Examples
The following example prints the first print job of the first available printer if it is waiting for a command.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
if (SiteKiosk.Printer.Printers.Item(1).Jobs.Item(1).IsWaiting)
SiteKiosk.Printer.Printers.Item(1).Jobs.Item(1).Print();
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top