FPDF_VIEWERREF_GetNumCopies method

int FPDF_VIEWERREF_GetNumCopies(
  1. FPDF_DOCUMENT document
)

Function: FPDF_VIEWERREF_GetNumCopies Returns the number of copies to be printed. Parameters: document - Handle to the loaded document. Return value: The number of copies to be printed.

Implementation

int FPDF_VIEWERREF_GetNumCopies(FPDF_DOCUMENT document) {
  return _FPDF_VIEWERREF_GetNumCopies(document);
}