如何使用 Microsoft.Office.Interop.Word 在某些 Word 文档中查找和修改 TextBox?

发布于 2024-12-27 13:43:08 字数 117 浏览 0 评论 0原文

我必须通过 TextBox id 访问和更改某些 Word 文档的某些文本框的文本。 例如,假设我在一个word文档中有一些名为txtDate的对象,并且我想将其内容更改为现在的日期,那么我如何通过它的id获取这个对象?

I have to access and change text of some text boxes of some word document by the TextBox id.
for example suppose that i have some object named txtDate in a word document and I want to change its content to now's date, so how can i get this object by its id?

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

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

发布评论

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

评论(1

蓝礼 2025-01-03 13:43:08
void SearchTextBox(Word.Document oDoc,string name,string newContent)
    {
        foreach (Word.Shape shape in oDoc.Shapes)
            if (shape.Name == name)
            {
                shape.TextFrame.ContainingRange.Text = newContent;
                return;
            }
    }
void SearchTextBox(Word.Document oDoc,string name,string newContent)
    {
        foreach (Word.Shape shape in oDoc.Shapes)
            if (shape.Name == name)
            {
                shape.TextFrame.ContainingRange.Text = newContent;
                return;
            }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文