Gets or sets a MfListVar list of string of native digits equivalent to the Western digits 0 through 9.
OutputVar := instance.NativeDigits
instance.NativeDigits := Value
Value
Instance of MfListVar containing elements of string var values containing the native equivalent of the Western digits 0 through 9.
Gets MfListVar containing elements of string var values containing the native equivalent of the Western digits 0 through 9. The default is a list having the elements "0", "1", "2", "3", "4", "5", "6", "7", "8", and "9".
Set a MfListVar list of string of native digits equivalent to the Western digits 0 through 9.
Throws MfInvalidOperationException if the property is being set and the MfNumberFormatInfo is read-only.
Throws MfArgumentNullException if the property is being set to null -or- In a set operation, an element of the value list is null.
Throws MfArgumentException if the property is being set and the list does not contain 10 elements.
-or-
In a set operation, an element of the value list does not contain either a single Char object or a pair of Char objects that comprise a surrogate pair.
-or-
In a set operation, an element of the value list is not a number digit as defined by the Unicode Standard. That is, the digit in the array element does not have the Unicode Number, Decimal Digit (Nd) General Category value.
-or-
n a set operation, the numeric value of an element in the value array does not correspond to the element's position in the array. That is, the element at index 0, which is the first element of the array, does not have a numeric value of 0, or the element at index 1 does not have a numeric value of 1.
Any list derived from MfListBase containing string elements can be used to set NativeDigits if IsReadOnly is false. However NativeDigits will always return MfListVar instance.
The character set that is specified by the NativeDigits property has no effect on parsing or formatting operations. Only the Basic Latin digits 0 (U+0030) through 9 (U+0039) are used when formatting or parsing numeric values or date and time values.