删除MS Word文档的文本框

发布于 2024-09-05 12:12:40 字数 54 浏览 4 评论 0原文

我有几个在文本框中包含文本的 MS Word 文档。我想删除这些文本框但保留数据。我该怎么做?

I have few MS word documents which contains text in text boxes. I want to remove those text boxes but keep the data as it. How can i do it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开半夏魅人心 2024-09-12 12:12:40

我认为您可以使用诸如 ActiveDocument.Shapes(1).TextFrame.TextRange.Text 之类的方法从文本框中获取文本,然后您可以通过执行诸如 ActiveDocument 之类的操作来删除它。 Shapes(1).Delete,之后您必须将从文本框中检索到的文本放入文档的相关部分。

I think you can get hold of the text from inside the textboxes using something like ActiveDocument.Shapes(1).TextFrame.TextRange.Text and then you could delete it by doing something like ActiveDocument.Shapes(1).Delete, and after that you'd have to put the text you retrieved from the text box in the relevant part of the document.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文