Hi Guys,
Is it possible to configure GroupDocs.Comparison to compare text of document only (potentially compare styles of document too).
I am using CompareDocs in similar way:
string source = @"C:\temp\sample.docx";
string target = @"C:\temp\sample_copy.docx";
using (Comparer comparer = new(source))
{
comparer.Add(target);
comparer.Compare(
@"C:\temp\Report.docx",
new CompareOptions
{
DetalisationLevel = DetalisationLevel.High,
DetectStyleChanges = true,
});
ChangeInfo[] changes = comparer.GetChanges();
// check changes object
}
Could you please assist me in understanding if it is possible and how should I configure CompareOptions maybe? If I would like images to be ignored and only text of document compared (for .docx and .pdf).