DecimalFormat.ParseBigDecimal 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 whether #parse
will always return a BigDecimal. -or- Whether to make #parse
prefer returning a android.icu.math.BigDecimal
when
possible.
public virtual bool ParseBigDecimal { [Android.Runtime.Register("isParseBigDecimal", "()Z", "GetIsParseBigDecimalHandler", ApiSince=24)] get; [Android.Runtime.Register("setParseBigDecimal", "(Z)V", "GetSetParseBigDecimal_ZHandler", ApiSince=24)] set; }
[<get: Android.Runtime.Register("isParseBigDecimal", "()Z", "GetIsParseBigDecimalHandler", ApiSince=24)>]
[<set: Android.Runtime.Register("setParseBigDecimal", "(Z)V", "GetSetParseBigDecimal_ZHandler", ApiSince=24)>]
member this.ParseBigDecimal : bool with get, set
Property Value
- Attributes
Remarks
Property getter documentation:
Returns whether #parse
will always return a BigDecimal.
Java documentation for android.icu.text.DecimalFormat.isParseBigDecimal()
.
Property setter documentation:
Whether to make #parse
prefer returning a android.icu.math.BigDecimal
when possible. For strings corresponding to return values of Infinity, -Infinity, NaN, and -0.0, a Double will be returned even if ParseBigDecimal is enabled.
Java documentation for android.icu.text.DecimalFormat.setParseBigDecimal(boolean)
.
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.