Count Property
The Count property contains the number of available printers.
Syntax
[long=] SiteKiosk.Printer.Printers.Count
|
Possible Values
Long value that retrieves the number of printers.
|
The property is read only.
Remarks
This is the same value as returned by the Printer.ManagedPrinterCount property.
This property is 0 if Printer Monitoring has not been enabled in the SiteKiosk configuration.
Examples
The following example shows the number of available printers in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top