 | PdfiumFPDFText_GetFontSize Method |
Get the font size of a particular character
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static double FPDFText_GetFontSize(
IntPtr text_page,
int index
)
Public Shared Function FPDFText_GetFontSize (
text_page As IntPtr,
index As Integer
) As Double
public:
static double FPDFText_GetFontSize(
IntPtr text_page,
int index
)
static member FPDFText_GetFontSize :
text_page : IntPtr *
index : int -> float
public static double FPDFText_GetFontSize(
IntPtr text_page,
int index
)
Patagames.Pdf.Pdfium.FPDFText_GetFontSize = function(text_page, index);
Parameters
- text_page IntPtr
- Handle to a text page information structure. Returned by FPDFText_LoadPage(IntPtr) function
- index Int32
- Zero-based index of the character.
Return Value
DoubleThe font size of the particular character, measured in points (about 1/72 inch). This is the typographic size of the font (so called "em size").
See Also