Hi,
When converting the attached document to PDF the lines break in the wrong place.
Is there a workaround for that?
I’m using Aspose.Words 9.0.0.0.
Hi,
Hi,
The issues you have found earlier (filed as WORDSNET-2707) have been fixed in this .NET update and this Java update.
Hi Scott,
Thanks for your inquiry. Aspose.Words’ layout engine now supports Hyphenation. However, to be able to use this feature, you must register a hyphenation dictionary specific to your language as follows:
Document doc = new Document("C:\Temp\test.doc");
Hyphenation.registerDictionary("en-US", "C:\HyphDic\hyph_en_US.dic");
//Hyphenation.RegisterDictionary("de-CH", @"C:\HyphDic\hyph_de_CH.dic");
doc.save("C:\Temp\out.pdf");
I hope, this helps.
PS: a few such dictionaries can be found here
Best regards,