 | PdfiumFPDFFont_GetStemV Method |
Get the StemV value in the font
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static int FPDFFont_GetStemV(
IntPtr font
)
Public Shared Function FPDFFont_GetStemV (
font As IntPtr
) As Integer
public:
static int FPDFFont_GetStemV(
IntPtr font
)
static member FPDFFont_GetStemV :
font : IntPtr -> int
public static int FPDFFont_GetStemV(
IntPtr font
)
Patagames.Pdf.Pdfium.FPDFFont_GetStemV = function(font);
Parameters
- font IntPtr
- Handle to the font obtained by {0} Overload or FPDFTextObj_GetFont(IntPtr)
Return Value
Int32StemV value in the font
Remarks
StemV value can be used to calculate the Weight of the font: Weight = StemV #x3C 140 ? StemV * 5 : (StemV * 4 + 140);
See Also