RunningAsLimitedUser Property



 
The RunningAsLimitedUser property indicates if SiteKiosk has been started by the restricted SiteKiosk user.


Syntax

    [bool=] SiteKiosk.Security.RunningAsLimitedUser
Possible Values
    Boolean value that retrieves the restricted user status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines if SiteKiosk has been started by the restricted SiteKiosk user and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Security.RunningAsLimitedUser);
    </SCRIPT>

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top