ReadDocument Method

Read objects in pdf file.


Object.ReadDocument()

Return value

Numeric

NumberDescription
 0OK
-10The existing document is either corrupted or in an unsupported format
-17PDF password not is valid.

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()
 
SELE (m.loPDFR.cCursorName)
BROWSE NORMAL
  
m.loPDFR.closeDocument()