EnableCodes Property



 
The EnableCodes property indicates whether code login is enabled.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
            EnableCodes
    
Possible Values
    Boolean value that retrieves the code login status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether code login is enabled and displays it.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
    alert(SiteCafe.EnableCodes);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top