getCurrencyPositivePattern |
Returns the positive pattern for the currency
Syntax
localeObject.getCurrencyPositivePattern()
Parameters
NA
Return Value
Returns the positive pattern for the currency
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.getCurrencyPositivePattern();//Will return "$n" for locale "en-US"