IsWaiting Property
The IsWaiting property indicates whether the job waits for a command.
Syntax
[bool=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
IsWaiting
|
Possible Values
Boolean value that retrieves the status.
|
The property is read only.
Remarks
Examples
The following example determines whether the first available print job of the first available printer waits for a command.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).Jobs.Item(1).IsWaiting);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top