Text Wrapping in Cell

Hi,
I am using Aspose.Words (DLL) version:5.2.2.0. The problem i am getting is, text inside the cell getting wrapped, which is not supposed to. I am using the following HTML code.

Text
Wrapping
Table

Plz find the attached file(Test.Doc).
Note:

  1. I have set the WrapText property of the cell to True
  2. Same HTML Code Works fine with Aspose.PDF(DLL) Version:3.8.0.0, so i hope their would be no changes to HTML Code.

Required:- The Width of the cell should be minimum of the text width inside it
Please Suggest a way to achieve this.
Regards,
Nithin.cv

Hi
Thanks for your request. I cannot reproduce the problem on my side. Here is my code:

string html = File.ReadAllText(@"Test197\test.html");
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertHtml(html);
doc.Save(@"Test197\out.doc");

The output document is attached. I use the latest version of Aspose.Words (6.2.0) for testing.
https://releases.aspose.com/words/net
Best regards.