Item Method
The Item method returns one item of the collection.
Syntax
[str=] SiteKiosk.Plugins("SiteCash").Zones.Item(index).Patterns.
Item(index)
|
Parameters
index |
Long value that contains the item number to return. |
Return Value
Returns a String that contains the URL pattern.
Remarks
Collection-index values are 1-based.
Examples
The following example shows the first URL pattern associated with the first existing zone.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCash").Zones.Item(1).Patterns.Item(1));
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top