PDFDoc doc = new PDFDoc();
if(doc != null) {
Log.d(TAG, "IS DOC MODIFIED: " + doc.isModified());
}
Log Contents:
IS DOC MODIFIED: true
-------
Is there a reason it returns true prior to any modifications to the actual document? Is there a way to tell when the document has been modified through the API?
Thanks in advance.
Ron
PDFDoc doc = new PDFDoc(path);
m_repaired = doc.IsModified(); // call before anything else
doc.InitSecurityHandler();