DefaultZone Property
The DefaultZone property indicates whether this is a default Payment Module zone.
Syntax
SiteCashZone.DefaultZone [=bool]
|
Possible Values
Boolean value that specifies or retrieves the default zone status.
|
The property is read/write.
Remarks
Examples
The following example determines whether the first existing zone is a default zone and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCash").Zones.Item(1).DefaultZone);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top