UtcTime Property
The UtcTime property contains the creation time of the logfile message.
Syntax
[date=] SiteKiosk.Logfile.LastMessages.Item(index).UtcTime
|
Possible Values
Date value that retrieves the milliseconds since January 1, 1970.
|
The property is read only.
Remarks
Universal Coordinated Time (UTC) / Greenwich Mean Time (GMT).
Use the DateTimeFormatter object to format the date.
Examples
The following example shows the creation time of the first message in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Logfile.LastMessages.Item(1).UtcTime);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top