Hidden text

Hello,
I have generate the attached file and there is a problem. The blank line contains an hidden text but I do not ask aspose to hide it.
It is not a common hidden text like word hidden text because when I delete a space on this line, the text reappears.
How to solve this problem and having the text visible ?
Thank you for helping me.

Hi Bastien,

Thanks for your inquiry. To fix this issue, please use the following code snippet:

Document doc = new Document(@"C:\Temp\res.doc");
Paragraph para = doc.FirstSection.Body.Paragraphs[2];
string styleName = para.ParagraphFormat.StyleName;
para.ParagraphFormat.ClearFormatting();
para.ParagraphFormat.StyleName = styleName;
doc.Save(@"C:\Temp\out.doc");

I hope, this helps.

Best regards,