EnableTime Property



 
The EnableTime property indicates whether time mode is enabled.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
            EnableTime
    
Possible Values
    Boolean value that retrieves the time mode status.

    The property is read only.
Remarks
    Time mode means that the remaining time will be decreased (prepaid) or the time will be increased (payment after surfing).
Examples
    The following example determines whether time mode is enabled and displays it.

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

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

Back to top