FPDFPage_CountObjects method

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

int FPDFPage_CountObjects(FPDF_PAGE page) {
  return _FPDFPage_CountObjects(page);
}