NumberFormat.MinimumIntegerDigits 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 minimum number of digits allowed in the integer portion of a number. -or- Sets the minimum number of digits allowed in the integer portion of a number.
public virtual int MinimumIntegerDigits { [Android.Runtime.Register("getMinimumIntegerDigits", "()I", "GetGetMinimumIntegerDigitsHandler")] get; [Android.Runtime.Register("setMinimumIntegerDigits", "(I)V", "GetSetMinimumIntegerDigits_IHandler")] set; }
[<get: Android.Runtime.Register("getMinimumIntegerDigits", "()I", "GetGetMinimumIntegerDigitsHandler")>]
[<set: Android.Runtime.Register("setMinimumIntegerDigits", "(I)V", "GetSetMinimumIntegerDigits_IHandler")>]
member this.MinimumIntegerDigits : int with get, set
Property Value
the minimum number of digits
- Attributes
Remarks
Property getter documentation:
Returns the minimum number of digits allowed in the integer portion of a number.
Java documentation for java.text.NumberFormat.getMinimumIntegerDigits()
.
Property setter documentation:
Sets the minimum number of digits allowed in the integer portion of a number. minimumIntegerDigits must be ≤ maximumIntegerDigits. If the new value for minimumIntegerDigits exceeds the current value of maximumIntegerDigits, then maximumIntegerDigits will also be set to the new value
Java documentation for java.text.NumberFormat.setMinimumIntegerDigits(int)
.
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.