LimitJobCount Property
The LimitJobCount property indicates whether the number of simultaneous print jobs is limited.
Syntax
[bool=] SiteKiosk.Printer.Printers.Item(index).LimitJobCount
|
Possible Values
Boolean value that retrieves the status.
|
The property is read only.
Remarks
This setting has been configured in the SiteKiosk Wizard.
Examples
The following example displays the maximum number of simultaneous print jobs of the first available printer if there is a limit.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
if (SiteKiosk.Printer.Printers.Item(1).LimitJobCount)
alert(SiteKiosk.Printer.Printers.Item(1).MaxJobs);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top