pdfGetNumberFormatObj
Nominally: resolve a built-in numeric-format-object handle
BOOL32 __stdcall pdfGetNumberFormatObj(INFM NumberFmt, TPDFNumberFormat* Value);
function pdfGetNumberFormatObj(NumberFmt: INFM; var Value: TPDFNumberFormat): LongBool; stdcall;
Purpose. Nominally: resolve a built-in numeric-format-object handle (INFM) to its TPDFNumberFormat structure.
Description — not operational in this release. Always returns False via the shared NotImplLogB helper (logs ERR_NOT_IMPLEMENTED: pdfGetNumberFormatObj via OutputDebugStringA and, if IPDF-like context is available, an ERR_NOT_IMPLEMENTED warning) — Value is left completely untouched. Present for ABI compatibility only; performs no lookup in this release. Contrast: GetDescriptor(NumberFmt, odNumFmt) is invoked first and would resolve a real GAP-7 descriptor if one existed, but the function exits via the stub path before ever using it (dead code on the success path).
Parameters.
| Parameter | Description |
|---|---|
NumberFmt | Number-format object handle — unused; the function never inspects it beyond the abandoned descriptor lookup. |
Value | Output structure — never written. |
Return value. Always False.
C# (P/Invoke)
[return: MarshalAs(UnmanagedType.Bool)]
Getters
pdfGetNumberFormatObj
The …A form takes UTF-8, …W
takes UTF-16; a bare name aliases the ANSI form.
Worked examples — complete programs in ten languages.