CreateCurrencyFormatter Method



 
The CreateCurrencyFormatter method creates an object that contains the currency environment.


Syntax

    [obj=] SiteKiosk.Plugins("SiteCash").CreateCurrencyFormatter()
Return Value Remarks
    None.
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