在 Richtextbox 中插入分页符
如何在RichTextBox中插入分页符?
谢谢!
How to insert Page Break in RichTextBox?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在RichTextBox中插入分页符?
谢谢!
How to insert Page Break in RichTextBox?
Thanks!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我为你找到了这个。
\\page
表示新页面的开始。I found this for you.
The
\\page
indicates the beginning of a new page.我在 VB 应用程序中附加了 chr(12)(即换页 ASCII 字符)来插入分页符。请注意,您不会在富文本框中看到分页符,但如果保存它并在 Word 中打开文件,或者打印内容,分页符就会出现。
这里记录了 RTF 控制代码:
富文本格式 1.5 规范
你可以使用,但是插入 Chr(12) 对我来说已经足够好了。
I appended chr(12) in my VB application (that is the Form Feed ASCII character) to insert a page break. Note that you won't see the page break in the Rich Text Box, but it will appear if you save it and open the file in Word, or if you print the contents.
There are RTF control codes documented here:
Rich Text Format 1.5 specification
that you can use, but inserting Chr(12) worked well enough for me.