PDFSharp - MigraDoc:表行中的文本超出页面长度。
为什么我的行内容会被截断?我正在尝试使用文本文件中的内容在 PDF 上写入文本。我使用 StreamReader 读取文件,然后为每一行添加一行。我无法更改和控制文件中的文本。有时,单行文本太大,以至于无法容纳一页,当发生这种情况时,该行将不会跨页拆分。
那么正确的做法是什么?行内容是否有最大长度?
Why does my row contents truncate? I am trying to write text on the PDF using contents in Text Files. I use StreamReader to read the file, and then for each Line, i add a row. I cannot change and control the text in the file. Sometimes, a single line of text is so huge, that it cannot fit a page and when that happens, the row will not split across pages.
What is the right way to do it then? is there a max length to a row contents?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
行中的文本不受限制(页面大小除外)。
表之外的段落将跳转到下一页(而表中的行当前不会跳转到下一页)。
因此,如果“一行”有时需要多个页面,那么表格就不合适了。请改用表格外的段落。
Text in a row is not limited (except by page size).
Paragraphs outside of tables will break to the next page (while rows in a table currently do not break to the next page).
So if "a single line" sometimes needs more than one page, tables are not appropriate. Use paragraphs outside tables instead.