 | PdfiumFPDFFont_GetCharBBox Method |
Get the special character bounding box of a font object.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFFont_GetCharBBox(
IntPtr font,
int charcode,
out int left,
out int top,
out int right,
out int bottom,
int level = 0
)
Public Shared Sub FPDFFont_GetCharBBox (
font As IntPtr,
charcode As Integer,
<OutAttribute> ByRef left As Integer,
<OutAttribute> ByRef top As Integer,
<OutAttribute> ByRef right As Integer,
<OutAttribute> ByRef bottom As Integer,
Optional level As Integer = 0
)
public:
static void FPDFFont_GetCharBBox(
IntPtr font,
int charcode,
[OutAttribute] int% left,
[OutAttribute] int% top,
[OutAttribute] int% right,
[OutAttribute] int% bottom,
int level = 0
)
static member FPDFFont_GetCharBBox :
font : IntPtr *
charcode : int *
left : int byref *
top : int byref *
right : int byref *
bottom : int byref *
?level : int
(* Defaults:
let _level = defaultArg level 0
*)
-> unit
public static void FPDFFont_GetCharBBox(
IntPtr font,
int charcode,
/** @attribute OutAttribute */ /** @ref */int left,
/** @attribute OutAttribute */ /** @ref */int top,
/** @attribute OutAttribute */ /** @ref */int right,
/** @attribute OutAttribute */ /** @ref */int bottom,
int level = 0
)
Patagames.Pdf.Pdfium.FPDFFont_GetCharBBox = function(font, charcode, left, top, right, bottom, level);
Parameters
- font IntPtr
- Handle to the font obtained by {0} Overload or FPDFTextObj_GetFont(IntPtr)
- charcode Int32
- The character code.
- left Int32
- Pointer to a float value receiving the left of a rectangle (in points).
- top Int32
- Pointer to a float value receiving the top of a rectangle (in points).
- right Int32
- Pointer to a float value receiving the right of a rectangle (in points).
- bottom Int32
- Pointer to a float value receiving the bottom of a rectangle (in points).
- level Int32 (Optional)
- Reserved. Mast be 0
See Also