CurrencySymbol Property
The CurrencySymbol property contains the current currency symbol.
Syntax
[str=] CurrencyFormatter.CurrencySymbol
|
Possible Values
String that retrieves the currency symbol.
|
The property is read only.
Remarks
Examples
The following example shows the currency symbol in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mycfm = SiteKiosk.Plugins("SiteCash").CreateCurrencyFormatter();
alert(mycfm.CurrencySymbol);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top