示例#1
0
 public Rectangle GetCharBBox(int charCode)
 {
     PDFium.FPDFFont_GetCharBBox(Handle, charCode, out int left, out int top, out int right, out int bottom, 0);
     return(new Rectangle(left, top, right - left, bottom - top));
 }