API referenceFonts

pdfNoEmbedFontListGet

Retrieve the font name at a given index of the no-embed list.

CategoryFont policy (dead subsystem)
Exported namespdfNoEmbedFontListGetA, pdfNoEmbedFontListGetW, pdfNoEmbedFontListGet
Notesame caveat

Purpose — Retrieve the font name at a given index of the no-embed list.

Declarations

C
const char* __stdcall pdfNoEmbedFontListGet(PPDF IPDF, int32_t Index);
const char* __stdcall pdfNoEmbedFontListGetA(PPDF IPDF, int32_t Index);
const wchar_t* __stdcall pdfNoEmbedFontListGetW(PPDF IPDF, int32_t Index);
Delphi
function pdfNoEmbedFontListGetA(const IPDF: PPDF; Index: Integer): PAnsiChar; stdcall; external 'LumasPdf.dll';
function pdfNoEmbedFontListGetW(const IPDF: PPDF; Index: Integer): PWideChar; stdcall; external 'LumasPdf.dll';

Parameters

ParameterTypeDescription
IPDFPPDFInstance handle.
IndexIntegerZero-based index.

Return value — The name at Index, or NULL if out of range.

C# (P/Invoke)

wrappers/dotnet/LumasPdf.cs
public static extern IntPtr pdfNoEmbedFontListGetW(IntPtr IPDF, int Index);
public static extern IntPtr pdfNoEmbedFontListGet(IntPtr IPDF, int Index);
public static extern IntPtr pdfNoEmbedFontListGetA(IntPtr IPDF, int Index);
Area
Fonts
Category

Core

Exported names

pdfNoEmbedFontListGetW pdfNoEmbedFontListGet pdfNoEmbedFontListGetA

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.