UntilTime Property
The UntilTime property contains the latest time at which the printer will print a job.
Syntax
[long=] SiteKiosk.Printer.Printers.Item(index).UntilTime
|
Possible Values
Long value that retrieves the time.
|
The property is read only.
Remarks
This value is expressed as minutes elapsed since 12:00 AM GMT (Greenwich Mean Time).
See PRINTER_INFO_2 (MSDN) for further information.
Examples
The following example displays the latest time at which the first available printer will print a job.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).UntilTime);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top