| Category | Alternate font substitution (dead mechanism) |
|---|---|
| Note | part of the dead mechanism |
Purpose — Delete a list created by pdfCreateAltFontList.
Declarations
C
BOOL32 __stdcall pdfDeleteAltFontList(PPDF IPDF, int32_t Handle);
Delphi
function pdfDeleteAltFontList(const IPDF: PPDF; Handle: Integer): LongBool; stdcall; external 'LumasPdf.dll';
Parameters
| Parameter | Type | Description |
|---|---|---|
IPDF | PPDF | Instance handle. |
Handle | Integer | List handle to delete. |
Return value — TRUE if Handle was a valid, not-already-deleted list; FALSE otherwise. If the deleted list was the active one, the active pointer is cleared (FAltListActive := 0) — inert either way, per the chapter note.
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Fonts
Category
Core
Exported names
pdfDeleteAltFontList
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.