FPDFPage_CountObjects function

  1. @Native<Int Function(FPDF_PAGE)>(FPDF_PAGE)>()
int FPDFPage_CountObjects(
  1. FPDF_PAGE page
)

Get number of page objects inside |page|.

page - handle to a page.

Returns the number of objects in |page|.

Implementation

@ffi.Native<ffi.Int Function(FPDF_PAGE)>()
external int FPDFPage_CountObjects(FPDF_PAGE page);