CreateCurrencyFormatter Method



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


Syntax

    [obj=] SiteCafe.CreateCurrencyFormatter()
    
Return Value Remarks
    None.
Examples
    The following example displays the currency symbol.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mycfm = SiteCafe.CreateCurrencyFormatter();
    alert(mycfm.CurrencySymbol);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top