Support of hide grammar/spelling errors in document using .NET

Hi,

Are there any updates on disabling spelling check in Word?

Thanks,
Ewa

@acturisaspose,

Thanks for your inquiry. We regret to share with you that this feature has been postponed. We will inform you once there is any update available on this feature.

We apologize for your inconvenience.

is there a plan to implement this feature?

@acturisaspose

I am afraid, these features will not be available in near future. Once there is an update available on these features, we will inform you via this forum thread. We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSNET-10403,WORDSNET-10404) have been fixed in this Aspose.Words for .NET 20.5 update and this Aspose.Words for Java 20.5 update.

@acturisaspose

We have added new property Document.ShowGrammaticalErrors in Aspose.Words 20.5 to ‘Hide grammar errors in this document only’. Following code example shows how to enable display of grammar errors in the document.

Document doc = new Document("in.docx");
doc.ShowGrammaticalErrors = true;
doc.Save("out.docx");

To show or hide the spelling errors in the document, we have added Document.ShowSpellingErrors property in Aspose.Words 20.5. You can enable display of spelling errors in the document using following code example.

Document doc = new Document("in.docx");
doc.ShowSpellingErrors = true;
doc.Save("out.docx");