MaxPages Property



 
The MaxPages property contains the maximum number of pages per print job.


Syntax

    [long=] SiteKiosk.Printer.Printers.Item(index).MaxPages
    
Possible Values
    Long value that retrieves the maximum number.

    The property is read only.
Remarks
    This setting has been configured in the SiteKiosk Wizard.
Examples
    The following example displays the maximum number of pages per print job of the first available printer if there is a limit.

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

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

Back to top