API referenceFonts

pdfNoEmbedFontListRemoveIndex

Remove one entry from the no-embed font list by index.

CategoryFont policy (dead subsystem)
Notesame caveat

Purpose — Remove one entry from the no-embed font list by index.

Declarations

C
int32_t __stdcall pdfNoEmbedFontListRemoveIndex(PPDF IPDF, int32_t Index);
Delphi
function pdfNoEmbedFontListRemoveIndex(const IPDF: PPDF; Index: Integer): Integer; stdcall; external 'LumasPdf.dll';

Parameters

ParameterTypeDescription
IPDFPPDFInstance handle.
IndexIntegerZero-based index to remove.

Return value1 on success; 0 if Index is out of range.

C# (P/Invoke)

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

Core

Exported names

pdfNoEmbedFontListRemoveIndex

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.