Tracked changes detection

Hi there

I have a Word document which Aspose.Words reports as having tracked changes enabled in it.
I have opened the document in the Word user interface and disabled tracked changes, but Aspose.Words still reports it as active. I was wondering could you take a look at the file to see what the problem might be?

Thanks
Eric Chubb

Hi Eric,

Thanks for your request. There are two properties. HasRevisions and TrackRevisions.
The first one indicates that document has revisions, if you apply all revisions in the document, this property will return False.
The second one indicates that tracking revisions is enabled.
Since there are few revisions in your document HasRevisions returns True. But you disabled tracking revisions, that is why TrackRevisions returns False.
Best regards.

Hi Alexey

Thanks for your response. I didn’t realise there was that distinction!

Eric