Patterns Collection
The Patterns collection contains the list of URL patterns associated with a zone.
Members Table
The following table lists the members provided by the Patterns collection.
|
Properties |
Description |
Count |
The number of URL patterns. |
|
Methods |
Description |
Item |
Returns one item of the collection. |
|
Remarks
This collection is available through the object SiteCashZone.
Use the Patterns collection to receive the URL patterns associated with a zone.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
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