SystemSecurityConfigured Property
The SystemSecurityConfigured property indicates whether the system security has been configured using the SiteKiosk security wizard.
Syntax
[bool=] SiteKiosk.Security.SystemSecurityConfigured
|
Possible Values
Boolean value that retrieves the security configured status.
|
The property is read only.
Remarks
The system security can be configured using the SiteKiosk security wizard.
This property is true even if the SiteKiosk security wizard has been canceled after starting it.
Examples
The following example determines whether the system security has been configured and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Security.SystemSecurityConfigured);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top