LimitPageCount Property
The LimitPageCount property indicates whether the number of pages per print job is limited.
Syntax
[bool=] SiteKiosk.Printer.Printers.Item(index).LimitPageCount
|
Possible Values
Boolean value that retrieves the status.
|
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