NAME

VarFormatCurrency  (OLEAUT32.127)

SYNOPSIS

 HRESULT VarFormatCurrency
 (
  LPVARIANT pVarIn,
  INT       nDigits,
  INT       nLeading,
  INT       nParens,
  INT       nGrouping,
  ULONG     dwFlags,
  BSTR*     pbstrOut
 )

DESCRIPTION

Format a variant value as a currency.

PARAMS

pVarIn [In] Variant to format.
nDigits [In] Number of digits following the decimal point (-1 = user default).
nLeading [In] Use a leading zero (-2 = user default, -1 = yes, 0 = no).
nParens [In] Use brackets for values < 0 (-2 = user default, -1 = yes, 0 = no).
nGrouping [In] Use grouping characters (-2 = user default, -1 = yes, 0 = no).
dwFlags [In] Currently unused, set to zero.
pbstrOut [Out] Destination for formatted string.

RETURNS

Success: S_OK. pbstrOut contains the formatted value.

Failure: E_INVALIDARG, if any parameter is invalid. E_OUTOFMEMORY, if enough memory cannot be allocated. DISP_E_TYPEMISMATCH, if the variant cannot be formatted.

NOTES

This function uses LOCALE_USER_DEFAULT when determining the currency format characters to use.

IMPLEMENTATION

Declared in "oleauto.h". https://source.winehq.org/source/include/oleauto.h

Implemented in "dlls/oleaut32/varformat.c". https://source.winehq.org/source/dlls/oleaut32/varformat.c

Debug channel "variant".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.