Priority Property



 
The Priority property contains the job priority.


Syntax

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

    The property is read only.
Remarks
    Possible priorities are:

    MAX_PRIORITY = 99
    MIN_PRIORITY = 1
    DEF_PRIORITY = 1

    See JOB_INFO_2 (MSDN) for further information.
Examples
    The following example displays the priority of the first available print job of the first available printer.

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

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

Back to top