Priority Property



 
The Priority property contains the priority value used by the spooler to route print jobs.


Syntax

    [long=] SiteKiosk.Printer.Printers.Item(index).Priority
    
Possible Values
    Long value that retrieves the priority.

    The property is read only.
Remarks Examples
    The following example displays the priority value used by the spooler to route print jobs of the first available printer.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Printer.Printers.Item(1).Priority);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top