API referenceForms

pdfGetNumberFormatObj

Nominally: resolve a built-in numeric-format-object handle

C
BOOL32 __stdcall pdfGetNumberFormatObj(INFM NumberFmt, TPDFNumberFormat* Value);
Delphi
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.

ParameterDescription
NumberFmtNumber-format object handle — unused; the function never inspects it beyond the abandoned descriptor lookup.
ValueOutput structure — never written.

Return value. Always False.

C# (P/Invoke)

wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Forms
Category

Getters

Exported names

pdfGetNumberFormatObj

String variants

The …A form takes UTF-8, …W takes UTF-16; a bare name aliases the ANSI form.

See working code

Worked examples — complete programs in ten languages.