在 vb.net 中将 RichTextBox 内容转换为 Word 而不丢失格式
我将word内容复制到richtextbox而没有完美丢失格式,但现在我正在编辑richtextbox中的内容。现在我想在vb.net中将richtextbox内容复制到word文档而不丢失任何格式。你怎么做?
I copied word content to richtextbox without loosing format perfectly, but now I am editing the content in the richtextbox. Now I want to copy the richtextbox content to a word document without losing any formating, in vb.net. How do you do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 RTF 内容复制到剪贴板:
将其粘贴到 Word 时,格式将被保留
You can copy the RTF content to the clipboard:
When you paste it to Word, the format will be preserved
如果您使用richtextbox的savetofile方法,您可以将内容保存到用户(或您的应用程序)可以在Word中打开的rtf文件。
If you use the richtextbox's savetofile method, you can save the content to an rtf file that the user (or your app) can open in Word.