Spell check Issue

Ms Word Does not perfom spell check on Aspose.Word created Documents.

Spell Check and Grammar does not show any error unless I run Option-> proofing-> RecheckDocument.
I know that it was fixed while back, but still an issue. I am using Aspose.Word Verion 24.4.0
Any assistance please

@mtariq134 There is a Font.NoProofing property, which instructs MS Word to prevent text from being spell checked by MS Word. So please try resetting this flag like this:

Document doc = new Document(@"C:\Temp\in.docx");

doc.GetChildNodes(NodeType.Run, true).Cast<Run>().ToList()
    .ForEach(r => r.Font.NoProofing = false);

doc.Save(@"C:\Temp\out.docx");