Click or drag to resize

EnumFontsCallback Delegate

Enumerate all fonts installed on the system

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public delegate void EnumFontsCallback(
	FPDF_SYSFONTINFO pThis,
	IntPtr pMapper
)

Parameters

pThis  FPDF_SYSFONTINFO
Pointer to the interface structure itself
pMapper  IntPtr
An opaque pointer to internal font mapper, used when calling FPDF_AddInstalledFont(IntPtr, String, CharacterSetTypes)
Remarks
Required: No. Implementation should call FPDF_AddInstalledFont(IntPtr, String, CharacterSetTypes) function for each font found. Only TrueType/OpenType and Type1 fonts are accepted by Pdfium SDK.
See Also