getCurrencyGroupSizes |
Returns the currency group sizes for the corresponding locale
Syntax
localeObject.getCurrencyGroupSizes()
Parameters
NA
Return Value
Returns the currency group sizes as an array
Example
The following example displays how this method is used.
importType("wcp.library.util.LocaleFormat"); importType("wcp.library.util.Locale"); var localeObject = new Locale(sLocale);//sLocale --> "en-US" localeObject.getCurrencyGroupSizes();//Will return "3" for locale "en-US"