Archived:Internationalising currencies in Symbian C++
(New page: __NOTOC__ __NOEDITSECTION__ {|style="background:#eceff2" width="660px" border="1" cellpadding="5" cellspacing="0" |- |'''ID''' || |'''Creation date''' || March 3, 2008 |- |'''Plat...) |
m (Protected "I18n: Currency" [edit=sysop:move=sysop]) |
Revision as of 12:03, 25 March 2008
| ID | Creation date | March 3, 2008 | |
| Platform | S60 3rd Edition, MR S60 3rd Edition, FP1 S60 3rd Edition, FP2 Beta |
Tested on devices | Nokia E61i Nokia E90 Nokia N95 8GB Nokia 6220 Classic |
| Category | Symbian C++ | Subcategory | Localization |
| APIs | None | Classes | TLocale |
| Methods | TLocale::FormatCurrency() |
Overview
This code snippet is one of the series of snippets that demonstrate how to implement support for international diversity. This snippet shows how to format currency according to the locale settings of the device.
Source file
// Buffer for localized text
TBuf<50> myBuf;
// The amount is an integer, but it is treated like the last two digits
// were decimal digits. E.g. 1249 = 12.49, 2 = 0.02, 002 = 0.02 ...
TInt myAmount = 123456789;
// Locale is initialized with system's current locale settings
TLocale myLocale;
// Format currency according to current locale settings
myLocale.FormatCurrency(myBuf, myAmount);
Postconditions
Currency is formatted according to the locale settings of the device.

