NotifyName Property
The NotifyName property contains the name of the user who should be notified when the job has been printed or when an error occurs while printing the job.
Syntax
[str=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
NotifyName
|
Possible Values
String that retrieves the user name.
|
The property is read only.
Remarks
Examples
The following example displays the name of the user who should be notified 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).NotifyName);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top