DecimalFormat.MinimumExponentDigits 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.
<strong>[icu]</strong> Returns the minimum number of digits printed in the exponent in scientific notation. -or- <strong>[icu]</strong> <strong>Scientific Notation:</strong> Sets the minimum number of digits to be printed in the exponent.
public virtual sbyte MinimumExponentDigits { [Android.Runtime.Register("getMinimumExponentDigits", "()B", "GetGetMinimumExponentDigitsHandler", ApiSince=24)] get; [Android.Runtime.Register("setMinimumExponentDigits", "(B)V", "GetSetMinimumExponentDigits_BHandler", ApiSince=24)] set; }
[<get: Android.Runtime.Register("getMinimumExponentDigits", "()B", "GetGetMinimumExponentDigitsHandler", ApiSince=24)>]
[<set: Android.Runtime.Register("setMinimumExponentDigits", "(B)V", "GetSetMinimumExponentDigits_BHandler", ApiSince=24)>]
member this.MinimumExponentDigits : sbyte with get, set
Property Value
- Attributes
Remarks
Property getter documentation:
<strong>[icu]</strong> Returns the minimum number of digits printed in the exponent in scientific notation.
Java documentation for android.icu.text.DecimalFormat.getMinimumExponentDigits()
.
Property setter documentation:
<strong>[icu]</strong> <strong>Scientific Notation:</strong> Sets the minimum number of digits to be printed in the exponent. For example, if minimum exponent digits is 3, the number 123000 will be printed as "1.23E005".
This setting corresponds to the number of zeros after the 'E' in a pattern string such as "0.00E000".
Java documentation for android.icu.text.DecimalFormat.setMinimumExponentDigits(byte)
.
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.