DecimalFormat.ParseBigDecimal Property

Definition

Returns whether the #parse(java.lang.String, java.text.ParsePosition) method returns BigDecimal. -or- Sets whether the #parse(java.lang.String, java.text.ParsePosition) method returns BigDecimal.

public virtual bool ParseBigDecimal { [Android.Runtime.Register("isParseBigDecimal", "()Z", "GetIsParseBigDecimalHandler")] get; [Android.Runtime.Register("setParseBigDecimal", "(Z)V", "GetSetParseBigDecimal_ZHandler")] set; }
[<get: Android.Runtime.Register("isParseBigDecimal", "()Z", "GetIsParseBigDecimalHandler")>]
[<set: Android.Runtime.Register("setParseBigDecimal", "(Z)V", "GetSetParseBigDecimal_ZHandler")>]
member this.ParseBigDecimal : bool with get, set

Property Value

true if the parse method returns BigDecimal; false otherwise

Attributes

Remarks

Property getter documentation:

Returns whether the #parse(java.lang.String, java.text.ParsePosition) method returns BigDecimal. The default value is false.

Added in 1.5.

Java documentation for java.text.DecimalFormat.isParseBigDecimal().

Property setter documentation:

Sets whether the #parse(java.lang.String, java.text.ParsePosition) method returns BigDecimal.

Added in 1.5.

Java documentation for java.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.

Applies to