StartTime Property
The StartTime property contains the earliest time at which the job can be printed.
Syntax
[long=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
StartTime
|
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 earliest 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).StartTime);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top