NumberFormatInfo: PercentGroupSizes (let)

PercentGroupSizes

Sets the group sizes for percent formatted numbers.



 Public Property Let PercentGroupSizes(
	  ByRef Value ( ) As Long )

Parameters

Value
[ByRef] Long. A vbLong array containing the grouping sizes.

Remarks

A group size is the number of digits that are to be groupsed 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