ISOCode Property
The ISOCode property contains the currency ISO description.
Syntax
[str=] CurrencyFormatter.ISOCode
|
Possible Values
String that retrieves the currency code.
|
The property is read only.
Remarks
For example, the ISO code for 'Euro' is 'EUR'.
Examples
The following example shows the currency code in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mycfm = SiteKiosk.Plugins("SiteCash").CreateCurrencyFormatter();
alert(mycfm.ISOCode);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top