 | GetFontCharsetCallback Delegate |
Get character set information for a font handle
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate CharacterSetTypes GetFontCharsetCallback(
FPDF_SYSFONTINFO pThis,
IntPtr hFont
)
Public Delegate Function GetFontCharsetCallback (
pThis As FPDF_SYSFONTINFO,
hFont As IntPtr
) As CharacterSetTypes
public delegate CharacterSetTypes GetFontCharsetCallback(
FPDF_SYSFONTINFO^ pThis,
IntPtr hFont
)
type GetFontCharsetCallback =
delegate of
pThis : FPDF_SYSFONTINFO *
hFont : IntPtr -> CharacterSetTypes
/** @delegate */
public delegate CharacterSetTypes GetFontCharsetCallback(
FPDF_SYSFONTINFO pThis,
IntPtr hFont
)
Parameters
- pThis FPDF_SYSFONTINFO
- Pointer to the interface structure itself
- hFont IntPtr
- Font handle returned by MapFont or GetFont method
Return Value
CharacterSetTypesCharacter set identifier. See defined constants above.
RemarksRequired: No.
See Also