VarFormatNumber (OLEAUT32.107)
HRESULT VarFormatNumber ( LPVARIANT pVarIn, INT nDigits, INT nLeading, INT nParens, INT nGrouping, ULONG dwFlags, BSTR* pbstrOut )
Format a variant value as a number.
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. |
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.
This function uses LOCALE_USER_DEFAULT when determining the number format characters to use.
Declared in "include/oleauto.h". gitlab.winehq.org/wine/wine/blob/master/include/oleauto.h
Implemented in "dlls/oleaut32/varformat.c". gitlab.winehq.org/wine/wine/blob/master/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 Nov 2024.