This method compares the original document with its copy. Both documents should have already been recognized using, for example, the Process method of the FRDocument object (or another method that performs document synthesis).This method returns the ComparisonResult object that contains all the changes made to the document.
Function CompareDocuments( _ RefDocument As IFRDocument, _ UserDocument As IFRDocument, _ RefPageIndices As IIntsCollection, _ UserPageIndices As IIntsCollection _) As IComparisonResult
RefDocument[in] Refers to the FRDocument object that contains the original document to compare. This parameter must not be NULL.UserDocument[in] Refers to the FRDocument object that contains the document copy to compare. This parameter must not be NULL.RefPageIndices[in] This parameter refers to the IntsCollection object which specifies the indices of the pages to be compared with the pages in the original document.UserPageIndices[in] This parameter refers to the IntsCollection object which specifies the indices of the pages to be compared with the pages in the document copy.Result[out, retval] A pointer to IComparisonResult* pointer variable that receives the interface pointer of the output ComparisonResult object.