It looks like the Aspose.Pdf.AlignmentType.Justify does not work properly (same as
Aspose.Pdf.AlignmentType.FullJustify) when IsHtmlTagSupported property is set to true for a text.
I have in production an aplication that use it without any problem for this issue (version May 24th, 2009) . But when I updated to the latest version of Aspose.Pdf (as you recommended) now I have this new issue.
If this is a known problem, can you please specify which version (latest version) I can use with this problem solved.
Thanks...
Here's the sample used:
=======================================
Pdf pdf = new Pdf();
Aspose.Pdf.Section sec1 = pdf.Sections.Add();
Text text = new Text("fsdfsd fsdhfjdsfh fh djfhsdfh skdfhskdhfjksdhfs dfsdfjshdfksjdhf sdfsdfhskjdhfskdjfhsd fskdjfhsk djfshdfks dfskdjfhskdjfhsd fskjdhfsk djfhsdkfhsdk fskdhfskjdhfsjkdhf sdfksdhfsjdhfkshdkshdf skdhfksdhfskdfjhsdjkfhdjhfskdjhjhd kdjdhfs djsdfhsd kfsd df sdf s dfdf sd f df sd fs.");
text.TextInfo.Alignment = Aspose.Pdf.AlignmentType.Justify;
text.IsHtmlTagSupported = true;
sec1.Paragraphs.Add(text);
pdf.Save("c:\\test.pdf");
========================================