|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winnls.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
CURRENCYFMT
The CURRENCYFMT structure contains information that defines the format of a currency string.
The GetCurrencyFormat function uses this information to customize a currency string for a specified
locale.
typedef struct _currencyfmt {
UINT NumDigits;
UINT LeadingZero;
UINT Grouping;
LPTSTR lpDecimalSep;
LPTSTR lpThousandSep;
UINT NegativeOrder;
UINT PositiveOrder;
LPTSTR lpCurrencySymbol;
} CURRENCYFMT;
Members
NumDigits
Specifies the number of fractional digits. This is equivalent to the locale
information specified by the LCTYPE constant value LOCALE_IDIGITS.
LeadingZero
Specifies whether to use leading zeroes in decimal fields. This is equivalent
to the locale information specified by the LCTYPE constant value LOCALE_ILZERO.
Grouping
Specifies the size of each group of digits to the left of the decimal. Values
in the range 0 9 are valid.
lpDecimalSep
Points to a null-terminated decimal separator string.
lpThousandSep
Points to a null-terminated thousand separator string.
NegativeOrder
Specifies the negative currency mode. This is equivalent to the locale
information specified by the LCTYPE constant value LOCALE_INEGCURR.
PositiveOrder
Specifies the positive currency mode. This is equivalent to the locale
information specified by the LCTYPE constant value LOCALE_ICURRENCY.
lpCurrencySymbol
Points to a null-terminated currency symbol string.
Remarks
For more information about the LCTYPE constants, see LCTYPE Constants.
See Also
GetCurrencyFormat
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|