Hello,
When using .Compare() methods, I’m not getting the same result than the result I get when using Word Compare feature.
The documents I’m comparing:
Rev A.docx (29.0 KB)
Rev B.docx (26.4 KB)
The result I’m getting when using Aspose.Words Compare
Result Aspose compare.docx (29.8 KB)
The result I’m getting when using Word Compare
Result Word compare.docx (35.9 KB)
I’m using the following CompareOptions
CompareOptions compareOptions = new CompareOptions
{
IgnoreCaseChanges = false,
IgnoreComments = false,
IgnoreFields = false,
IgnoreFootnotes = false,
IgnoreFormatting = true,
IgnoreHeadersAndFooters = false,
IgnoreTables = false,
IgnoreTextboxes = false,
Target = ComparisonTargetType.New
};
We can see few majors differences:
- I’m getting a blank page at the beginning of the document when using aspose.words Compare
- After the Chapter 1.5, the table is broken when using aspose.words Compare
Can I get some help on how to get the closest result to the word document ?
Best regards.