GetNumberFormattingUserParameters

Returns the double-byte integers that identify the user’s decimal and thousands separator characters.

Syntax

<HsvSystemInfo>.GetNumberFormattingUserParameters pwcDecimalChar, pwcThousandsChar

Argument

Description

pwcDecimalChar

Integer. Returns the double-byte integer equivalent of the user’s decimal character.

pwcThousandsChar

Integer. Returns the double-byte integer equivalent of the user’s thousands separator character.

Example

This example prints the user’s decimal and thousands separator characters to Visual Basic’s Immediate window.

Dim cSystemInfo As HsvSystemInfo, iDec As Integer
Dim iThous As Integer
'g_cSession is an HsvSession object reference
Set cSystemInfo = g_cSession.SystemInfo
cSystemInfo.GetNumberFormattingUserParameters iDec, iThous
Debug.Print "Decimal: " & ChrW(iDec)
Debug.Print "Thousands: " & ChrW(iThous)