FPDFLink_Enumerate function

  1. @Native<FPDF_BOOL Function(FPDF_PAGE, Pointer<Int>, Pointer<FPDF_LINK>)>(FPDF_PAGE, ffi.Pointer<ffi.Int>, ffi.Pointer<FPDF_LINK>)>()
int FPDFLink_Enumerate(
  1. FPDF_PAGE page,
  2. Pointer<Int> start_pos,
  3. Pointer<FPDF_LINK> link_annot
)

Enumerates all the link annotations in |page|.

page - handle to the page. start_pos - the start position, should initially be 0 and is updated with the next start position on return. link_annot - the link handle for |startPos|.

Returns TRUE on success.

Implementation

@ffi.Native<
  FPDF_BOOL Function(FPDF_PAGE, ffi.Pointer<ffi.Int>, ffi.Pointer<FPDF_LINK>)
>()
external int FPDFLink_Enumerate(
  FPDF_PAGE page,
  ffi.Pointer<ffi.Int> start_pos,
  ffi.Pointer<FPDF_LINK> link_annot,
);