aspose-words / Aspose.Words-for-Java

Aspose.Words for Java examples, plugins and showcases
https://products.aspose.com/words/java
MIT License
401 stars 206 forks source link

Invalid paragraph spacing setting #88

Closed Wang0310 closed 2 years ago

Wang0310 commented 2 years ago

image image

AlexNosk commented 2 years ago

@Wang0310 You are using DocumentBuilder.insertHtml method. By default content inserted from HTML ignores formatting specified in DocumentBuilder. You can use another overload of DocumentBuilder.insertHtml method to set a flag to use DocumentBuilder formatting:

builder.insertHtml(
        "<p align='right'>Paragraph 1.</p>" +
                "<p>Paragraph 2.</p>", true);

https://reference.aspose.com/words/java/com.aspose.words/documentbuilder#insertHtml(java.lang.String,boolean)

Wang0310 commented 2 years ago

@AlexNosk thank you. I've confirmed it. It's OK.