NumberFormatInfo: NumberGroupSizes (get)

NumberGroupSizes

Returns the current group sizes array for formatted numbers.



 Public Property Get NumberGroupSizes ( ) As Long ( )

Return Values

Long() -  An array containing grouping sizes for a formatted number.

Remarks

A group size is the number of digits that are to be grouped together before being separated by the group separator symbol. Generally the group sizes is an array of one element having a value of 3.

The sizes can be changed to different sizes, such as {3,2,1}. This particular set of group sizes would cause a number 1234567890 to be formatted as 1,2,3,4,5,67,890. Once the last group size has been reached, it is repeatedly used in grouping the remaining digits.

Read/Write.

See Also

Project CorLib Overview

Class NumberFormatInfo Overview