UntilTime Property
The UntilTime property contains the latest time at which the job can be printed.
Syntax
[long=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
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 JOB_INFO_2 (MSDN) for further information.
Examples
The following example displays the latest time at which the first available print job of the first available printer can be printed.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).Jobs.Item(1).UntilTime);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top