Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This structure contains information that defines the format of a number string. The GetNumberFormatfunction uses this information to customize a number string for a specified locale.

Syntax

typedef struct _numberfmt { 
  UINT 
NumDigits; 
  UINT 
LeadingZero; 
  UINT 
Grouping; 
  LPTSTR 
lpDecimalSep; 
  LPTSTR 
lpThousandSep; 
  UINT 
NegativeOrder; 
} NUMBERFMT; 

Members

NumDigits

Number of fractional digits. This is equivalent to the locale information specified by the LCTYPE Constantsvalue, LOCALE_IDIGITS.

LeadingZero

Value that specifies whether to use leading zeroes in decimal fields. This is equivalent to the locale information specified by the LCTYPEconstant value, LOCALE_ILZERO.

Grouping

Size of each group of digits to the left of the decimal. Values in the range zero – 9 are valid.

lpDecimalSep

Long pointer to a null-terminated decimal-separator string.

lpThousandSep

Long pointer to a null-terminated thousand-separator string.

NegativeOrder

Negative number mode. This is equivalent to the locale information specified by the LCTYPEconstant value, LOCALE_INEGNUMBER.

Requirements

Header winnls.h
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also