NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NumberFormatInfo.NumberGroupSize

Retrieves and assigns the number of digits in each group to the left of the decimal point.

[Visual Basic]
Public Property NumberGroupSize As Integer ()
[C#]
public int[] NumberGroupSize {get; set;}
[C++]
public: __property int* get_NumberGroupSize();
public: __property void set_NumberGroupSize(int*[]);
[JScript]
public function get NumberGroupSize() : int[];
public function set NumberGroupSize(int[]);

Property Value

Read/write. The number of digits in each group to the left of the decimal point. The default is an array of length one with the value 3.

Exceptions

Exception Type Condition
ArgumentException value contains any entries that are non-positive other than the last entry, which may be 0.
InvalidOperationException This NumberFormatInfo object is read-only and an attempt is made to assign a value.
ArgumentException value contains one or more entries greater than 9.

Remarks

Note: Assignment is not allowed if this NumberFormatInfo object is read-only.

See Also

NumberFormatInfo Class | NumberFormatInfo Members | System.Globalization Namespace