FPDFDoc_GetPageMode method

int FPDFDoc_GetPageMode(
  1. FPDF_DOCUMENT document
)

Get the document's PageMode.

doc - Handle to document.

Returns one of the |PAGEMODE_*| flags defined above.

The page mode defines how the document should be initially displayed.

Implementation

int FPDFDoc_GetPageMode(FPDF_DOCUMENT document) {
  return _FPDFDoc_GetPageMode(document);
}