CopyCount Property



 
The CopyCount property contains the number of copies to print.


Syntax

    [long=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
            CopyCount
    
Possible Values
    Long value that retrieves the number of copies.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the number of copies to print 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).CopyCount);
    </SCRIPT>
    

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

Back to top