CurrencyFormatter 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CurrencyFormatter(String) |
建立以貨幣識別碼初始化的 CurrencyFormatter 物件。 |
CurrencyFormatter(String, IIterable<String>, String) |
建立以貨幣識別碼、語言清單和地理區域初始化的 CurrencyFormatter 物件。 |
CurrencyFormatter(String)
建立以貨幣識別碼初始化的 CurrencyFormatter 物件。
public:
CurrencyFormatter(Platform::String ^ currencyCode);
CurrencyFormatter(winrt::hstring const& currencyCode);
public CurrencyFormatter(string currencyCode);
function CurrencyFormatter(currencyCode)
Public Sub New (currencyCode As String)
參數
- currencyCode
-
String
Platform::String
winrt::hstring
格式化和剖析貨幣值時要使用的貨幣識別碼。
另請參閱
適用於
CurrencyFormatter(String, IIterable<String>, String)
建立以貨幣識別碼、語言清單和地理區域初始化的 CurrencyFormatter 物件。
public:
CurrencyFormatter(Platform::String ^ currencyCode, IIterable<Platform::String ^> ^ languages, Platform::String ^ geographicRegion);
CurrencyFormatter(winrt::hstring const& currencyCode, IIterable<winrt::hstring> const& languages, winrt::hstring const& geographicRegion);
public CurrencyFormatter(string currencyCode, IEnumerable<string> languages, string geographicRegion);
function CurrencyFormatter(currencyCode, languages, geographicRegion)
Public Sub New (currencyCode As String, languages As IEnumerable(Of String), geographicRegion As String)
參數
- currencyCode
-
String
Platform::String
winrt::hstring
格式化和剖析貨幣值時要使用的貨幣識別碼。
- geographicRegion
-
String
Platform::String
winrt::hstring
地理區域的識別碼。
備註
如果提供貨幣的符號與所提供區域中不同貨幣的符號相同, (如果沒有提供任何) ,則格式設定可能會使用貨幣代碼,即使 Mode 屬性為 UseSymbol也一樣。 這是為了避免模棱兩可。 例如,CurrencyFormatter (「USD」, [「en」], 「CA」) 會建立格式器,將 3 格式化為 3 CAD,即使 Mode 屬性為 UseSymbol 也一樣。 同樣地,CurrencyFormatter (「CAD」, [「en」], 「US」) 會建立格式器,將 3 格式設定為 3 美元。
如果您的應用程式將此類別中使用的語言標籤傳遞至任何 國家語言支援 函式,則必須先呼叫 ResolveLocaleName來轉換標記。
語言標籤支援 Unicode 延伸模組 「ca-」 和 「nu-」。 (請參閱 Unicode 索引鍵/類型定義.) 請注意,這些延伸模組可能會影響 CurrencyFormatter 物件所使用的數字系統。