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.CurrencyGroupSize

Retrieves and assigns the group size array.

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

Property Value

Read/write. The group size array. The default value is 3.

Exceptions

Exception Type Condition
ArgumentException value to assign is > 9.
InvalidOperationException This NumberFormatInfo object is read-only and an attempt is made to assign a value.
ArgumentException value to assign contains non-positive entries other than the last entry, which may be zero.

Remarks

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

See Also

NumberFormatInfo Class | NumberFormatInfo Members | System.Globalization Namespace