Dear Ladies and Gentlemen,
I have a little Problem with URL wrapping in aspose.words.
I create a word document with aspose.words. Then I’d like to add a table with some text to the word document. This text can contains urls. Unfortunaly the URL isn’t wrapped automatically. So the right part of the created pdf file is cut off. How can I enable url wrapping?
Here is the sample code:
Dim doc As New Aspose.Words.DocumentBuilder
doc.StartTable()
doc.InsertCell()
doc.Write(“ThisIsAVeryVeryLongWord”)
doc.InsertCell()
doc.Write(“Here is the URL: http://example.org?param1=this+is+a+param¶m2=moreparam¶m3=1234567”)
doc.InsertCell()
doc.Write(“ThisIsAVeryVeryLongWord”)
doc.EndRow()
doc.EndTable()
doc.Document.Save(“C:\wegdamit\test.pdf”)
Sincere regards,
Björn
<br><br>