Active Property



 
The Active property indicates whether the device is active.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Devices2.Item(index).Active
    
Possible Values
    Boolean value that retrieves the activity status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the first existing device is active and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Devices2.Item(1).Active);
    </SCRIPT>
    

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

Back to top