UtcOffset Property
The UtcOffset property contains the difference between the current timezone and UTC in minutes.
Syntax
[long=] SiteKiosk.Logfile.LastMessages.Item(index).UtcOffset
|
Possible Values
Long value that retrieves the utc offset.
|
The property is read only.
Remarks
Examples
The following example shows the utc offset of the first message in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Logfile.LastMessages.Item(1).UtcOffset);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top