ShutdownMode Property
The ShutdownMode property contains the SiteKiosk shutdown mode.
Syntax
[long=] SiteKiosk.ShutdownMode
|
Possible Values
Long value that retrieves the shutdown mode.
|
The property is read only.
Remarks
Possible shutdown modes are:
0 : quit
1 : restart
2 : reboot
3 : shutdown
4 : logoff
Examples
The following example shows the shutdown mode in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.ShutdownMode);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top