DefaultPriority Property
The DefaultPriority property contains the default priority value assigned to each print job.
Syntax
[long=] SiteKiosk.Printer.Printers.Item(index).DefaultPriority
|
Possible Values
Long value that retrieves the default priority.
|
The property is read only.
Remarks
Examples
The following example displays the default priority value assigned to each print job of the first available printer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).DefaultPriority);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top