pdfNoEmbedFontListRemoveIndex
Remove one entry from the no-embed font list by index.
| Category | Font policy (dead subsystem) |
|---|---|
| Note | same 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
| Parameter | Type | Description |
|---|---|---|
IPDF | PPDF | Instance handle. |
Index | Integer | Zero-based index to remove. |
Return value — 1 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.