你能在 C# (.NET 4.0) 中从剪贴板获取 docx xml
使用以下命令可以轻松地从剪贴板中获取 Html、rtf、UnicodeText 和图像等内容:
Clipboard.GetText(TextDataFormat.Html);或 Clipboard.GetImage();或者你有什么。
有没有办法从剪贴板中获取 docx xml(查看保存的 docx 文件时得到的那种)? Word 文档中的复制/剪切是否会将 docx xml 放入剪贴板?
It's easy to get things like Html, rtf, UnicodeText, and images off of the clipboard using this:
Clipboard.GetText(TextDataFormat.Html); or Clipboard.GetImage(); or what have you.
Is there a way to get docx xml off of the clipboard (the kind that you get if you look at a saved docx file)? Does a copy/cut in a word document even put docx xml on the clipboard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须采取解决方法,获取 Word docx 文件的文件名,然后读取它以获取其后面的 XML,然后将其粘贴到剪贴板。
当你在那里时,你可以
。
You have to do a workaround by grabbing the file name of the Word docx file and then reading it to get the XML behind it, then pasting it to clipboard.
While your there you can
.