StatusName Property



 
The StatusName property contains the description of the print job status.


Syntax

    [str=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
           StatusName
    
Possible Values
    String that retrieves the description.

    The property is read only.
Remarks
    This member should be checked prior to Status and, if StatusName is NULL, the status is defined by the contents of the Status member.

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

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

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

Back to top