PrinterName Property
The PrinterName property contains the name of the printer for which the job is spooled.
Syntax
[str=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
PrinterName
|
Possible Values
String that retrieves the name.
|
The property is read only.
Remarks
Examples
The following example displays the name of the printer for which the first available print job of the first available printer is spooled.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).Jobs.Item(1).PrinterName);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top