Print with hyphenation

Hi Aspose,

exist any method in Aspose.Word (.NET) for print document with hyphenation?

Thanks, Enzo

Hello

Thanks for your inquiry. Aspose.Words does not support hyphenation upon rendering/printing. In general, hyphenation is very complex issue because there are specific rules of hyphenation for each particular language.

Currently, the priority of the issue is lowered because there are not many customers, who is interested in this feature. We will probably wait for more requests from the customers. So currently, I cannot provide you any timeline regarding this feature.

Best regards,

The issues you have found earlier (filed as WORDSNET-2707) have been fixed in this .NET update and this Java update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(21)

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,