CurrencyDisplay enum
Available currency display options when using NumberFormatStyle.Currency.
Signature:
export declare enum CurrencyDisplay
Enumeration Members
| Member | Value | Description |
|---|---|---|
| Code | "code" | Use the ISO currency code. |
| Name | "name" | Use a localized currency name such as "dollar". |
| NarrowSymbol | "narrowSymbol" | Use a narrow format symbol ("$100" rather than "US$100"). |
| Symbol | "symbol" | Use a localized currency symbol such as "€" (default). |