PayApplications Property
The PayApplications property indicates whether using applications is charged.
Syntax
[bool=] SiteKiosk.Plugins("SiteCash").PayApplications
|
Possible Values
Boolean value that indicates whether applications are charged.
|
The property is read only.
Remarks
The price will be charged per hour.
Examples
The following example determines whether using applications is charged and shows the price in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
appPay = SiteKiosk.Plugins("SiteCash").PayApplications;
appPrice = SiteKiosk.Plugins("SiteCash").ApplicationPrice;
if (appPay) alert("Price per hour for applications: " + appPrice);
else alert("Using applications is for free");
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top