How to hide grammar/spelling errors in document using C#

Hi,

We actually have the opposite situation, we would like to activate the spelling and grammar in the generated Word documents, is there any plan to release this feature soon ?
Our generated documents are not showing spelling and grammar errors when opened in MS Word.

Regards,
Aurelian Iordache
Software Developer
IBM Romania

Hi Aurelian,

Thanks for your inquiry.
Please use Font.NoProofing property. The value of this property is True when the formatted characters are not to be spell checked.

I have logged your requirements with same feature requests in our issue tracking system. We will update you via this forum thread once these features are available. We apologize for your inconvenience.

Hi,

Do you have an update on this issue?

Hi Aurelian,

Thanks for your inquiry. We regret to share with you that the requested features have been postponed. We will inform you via this forum thread as soon as there are any further developments. We apologize for your inconvenience.

We logged the requested features with following IDs.
WORDSNET-10404 : Add feature to 'Hide grammar errors in this document only'
WORDSNET-10403 : Add feature to 'Hide spelling errors in this document only'

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.

@ibmromania

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");