 | PdfiumFPDF_AddInstalledFont Method |
Add a system font to the list in Pdfium SDK.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDF_AddInstalledFont(
IntPtr mapper,
string face,
CharacterSetTypes charset
)
Public Shared Sub FPDF_AddInstalledFont (
mapper As IntPtr,
face As String,
charset As CharacterSetTypes
)
public:
static void FPDF_AddInstalledFont(
IntPtr mapper,
String^ face,
CharacterSetTypes charset
)
static member FPDF_AddInstalledFont :
mapper : IntPtr *
face : string *
charset : CharacterSetTypes -> unit
public static void FPDF_AddInstalledFont(
IntPtr mapper,
String face,
CharacterSetTypes charset
)
Patagames.Pdf.Pdfium.FPDF_AddInstalledFont = function(mapper, face, charset);
Parameters
- mapper IntPtr
- Opaque pointer to Pdfium font mapper
- face String
- The font face name
- charset CharacterSetTypes
- Font character set. See CharacterSetTypes.
RemarksThis function is only called during the system font list building process.
See Also