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

Retrieves and assigns the group size array.

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

Property Value

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

Exceptions

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

Remarks

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

See Also

NumberFormatInfo Class | NumberFormatInfo Members | System.Globalization Namespace