MaxJobs Property



 
The MaxJobs property contains the maximum number of simultaneous print jobs.


Syntax

    [long=] SiteKiosk.Printer.Printers.Item(index).MaxJobs
    
Possible Values
    Long value that retrieves the maximum number.

    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