Document Property



 
The Document property contains the name of the print job document.


Syntax

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

    The property is read only.
Remarks
    For example, a document name could be "MS-WORD: Review.doc".

    See JOB_INFO_2 (MSDN) for further information.
Examples
    The following example displays the document name 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).Document);
    </SCRIPT>
    

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

Back to top