Count Property
The Count property contains the number of URL patterns associated with a zone.
Syntax
[long=] SiteKiosk.Plugins("SiteCash").Zones.Item(index).Patterns.Count
|
Possible Values
Long value that retrieves the number of patterns.
|
The property is read only.
Remarks
Examples
The following example shows the number of URL patterns associated with the first existing zone.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCash").Zones.Item(1).Patterns.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top