Count Property



 
The Count property contains the number of Payment Module default zones and zones that have been defined in the SiteKiosk configuration.


Syntax

    [long=] SiteKiosk.Plugins("SiteCash").Zones.Count
    
Possible Values
    Long value that retrieves the number of zones.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the number of zones in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Zones.Count);
    </SCRIPT>
    

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

Back to top