DecimalFormatSymbols.InternationalCurrencySymbol Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the ISO 4217 currency code of the currency of these DecimalFormatSymbols. -or- Sets the ISO 4217 currency code of the currency of these DecimalFormatSymbols.
public virtual string? InternationalCurrencySymbol { [Android.Runtime.Register("getInternationalCurrencySymbol", "()Ljava/lang/String;", "GetGetInternationalCurrencySymbolHandler")] get; [Android.Runtime.Register("setInternationalCurrencySymbol", "(Ljava/lang/String;)V", "GetSetInternationalCurrencySymbol_Ljava_lang_String_Handler")] set; }
[<get: Android.Runtime.Register("getInternationalCurrencySymbol", "()Ljava/lang/String;", "GetGetInternationalCurrencySymbolHandler")>]
[<set: Android.Runtime.Register("setInternationalCurrencySymbol", "(Ljava/lang/String;)V", "GetSetInternationalCurrencySymbol_Ljava_lang_String_Handler")>]
member this.InternationalCurrencySymbol : string with get, set
Property Value
the currency code
- Attributes
Remarks
Property getter documentation:
Returns the ISO 4217 currency code of the currency of these DecimalFormatSymbols.
Added in 1.2.
Java documentation for java.text.DecimalFormatSymbols.getInternationalCurrencySymbol()
.
Property setter documentation:
Sets the ISO 4217 currency code of the currency of these DecimalFormatSymbols. If the currency code is valid (as defined by java.util.Currency#getInstance(java.lang.String) Currency.getInstance
), this also sets the currency attribute to the corresponding Currency instance and the currency symbol attribute to the currency's symbol in the DecimalFormatSymbols' locale. If the currency code is not valid, then the currency attribute is set to null and the currency symbol attribute is not modified.
Added in 1.2.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.