ApplicationPrice Property
The ApplicationPrice property contains the price per hour for using applications.
Syntax
[double=] SiteKiosk.Plugins("SiteCash").ApplicationPrice
|
Possible Values
Double value that retrieves the price.
|
The property is read only.
Remarks
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