FPDFLink_GetAnnotRect function

  1. @Native<FPDF_BOOL Function(FPDF_LINK, Pointer<FS_RECTF>)>(FPDF_LINK, ffi.Pointer<FS_RECTF>)>()
int FPDFLink_GetAnnotRect(
  1. FPDF_LINK link_annot,
  2. Pointer<FS_RECTF> rect
)

Get the rectangle for |link_annot|.

link_annot - handle to the link annotation. rect - the annotation rectangle.

Returns true on success.

Implementation

@ffi.Native<FPDF_BOOL Function(FPDF_LINK, ffi.Pointer<FS_RECTF>)>()
external int FPDFLink_GetAnnotRect(
  FPDF_LINK link_annot,
  ffi.Pointer<FS_RECTF> rect,
);