iPagesCnt Property

Page count in PDF file.

Object.iPagesCnt=iExpr


Remarks

Applies To: PDF#READER

Examples

m.loPDFR = EVALUATE([xfrx("PDF#READER")])
*m.loPDFR.SetPasswords("owner","user") && set password for pdf file
m.lcFile="BASE-UNI.pdf"
IF m.loPDFR.openDocument(m.lcFile) < 0
   RETURN
ENDIF

m.lnError=m.loPDFR.ReadDocument()
 
?m.loPDFR.iPagesCnt

  
m.loPDFR.closeDocument()