SetLCID Method



 
The SetLCID method sets the locale ID.


Syntax

    CurrencyFormatter.SetLCID(lcid)
    
Parameters
    lcid Long value that contains the new locale ID.
Return Value
    None.
Remarks
    None.
Examples
    The following example creates a CurrencyFormatter and sets its locale ID.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mycfm = SiteKiosk.Plugins("SiteCash").CreateCurrencyFormatter();
    mycfm.SetLCID(1024);
    </SCRIPT>
    

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

Back to top