API referenceFonts

pdfDeleteAltFontList

Delete a list created by

CategoryAlternate font substitution (dead mechanism)
Notepart 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

ParameterTypeDescription
IPDFPPDFInstance handle.
HandleIntegerList handle to delete.

Return valueTRUE 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.