DecimalFormatSymbols.ExponentSeparator Property

Definition

Returns the string used to separate the mantissa from the exponent. -or- Sets the string used to separate the mantissa from the exponent.

public virtual string? ExponentSeparator { [Android.Runtime.Register("getExponentSeparator", "()Ljava/lang/String;", "GetGetExponentSeparatorHandler")] get; [Android.Runtime.Register("setExponentSeparator", "(Ljava/lang/String;)V", "GetSetExponentSeparator_Ljava_lang_String_Handler")] set; }
[<get: Android.Runtime.Register("getExponentSeparator", "()Ljava/lang/String;", "GetGetExponentSeparatorHandler")>]
[<set: Android.Runtime.Register("setExponentSeparator", "(Ljava/lang/String;)V", "GetSetExponentSeparator_Ljava_lang_String_Handler")>]
member this.ExponentSeparator : string with get, set

Property Value

the exponent separator string

Attributes

Remarks

Property getter documentation:

Returns the string used to separate the mantissa from the exponent. Examples: "x10^" for 1.23x10^4, "E" for 1.23E4.

Added in 1.6.

Java documentation for java.text.DecimalFormatSymbols.getExponentSeparator().

Property setter documentation:

Sets the string used to separate the mantissa from the exponent. Examples: "x10^" for 1.23x10^4, "E" for 1.23E4.

Added in 1.6.

Java documentation for java.text.DecimalFormatSymbols.setExponentSeparator(java.lang.String).

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.

Applies to