本文介绍了什么是itext7中Chunk.NEWLINE的替代品的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Chunk.NEWLINE在iText 5中添加了一个新行。但是iText 7不支持Chunk。如何使用iText 7添加新行?

Chunk.NEWLINE adds an new line in iText 5. But iText 7 do not support Chunk. How do I add a new line using iText 7?

推荐答案

请参阅关于在iText7中替换 Chunk 的答案。现在要添加一个新行,您应该使用新文本(\ n)并将其放入段落。

Please refer to this answer about replacement of Chunk in iText7. Now to add a new line you should use new Text("\n") and put it to a paragraph.

这篇关于什么是itext7中Chunk.NEWLINE的替代品的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 11:59