如何使用Microsoft.Office.Interop.Word获取Word文档中的形状或图片中的文本?

发布于 2024-11-28 03:42:27 字数 266 浏览 1 评论 0原文

我的Word文件包含段落、图像和形状的列表。这里,一些图片(图像)自行分组。每个组都有一个带有一些文本的文本框控件。形状也有我上面提到的文本。

使用 Microsoft.Office.Interop.Word.Paragraphs,我可以获取段落文本。但是无法获取这些文本。我怎样才能获取它。

在 Open Xml 表示中,所有文本都位于 内。

请指导我摆脱这个问题......

Saravanan.P

My word file containing list of paragraphs and images and shapes.Here, Some pictures(images) are grouped itself. And each group having one text box control with some text.The Shapes are also having the text i mentioned above.

Using Microsoft.Office.Interop.Word.Paragraphs, i can able to get the paragraph text.But Could not able to get the those text.How can i get it.

In Open Xml representation, All text are inside the <w:p>.

Please guide me to get out of this issue...

Saravanan.P

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

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

发布评论

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

评论(1

等往事风中吹 2024-12-05 03:42:27

您可以使用“HasText”属性来实现此目的。

if (FileDocument.Shapes.Range(1).TextFrame.HasText != 0)
{
    Fieldstring.Add(FileDocument.Shapes.Range(1).TextFrame.TextRange.Text.ToString());
}

You can use of "HasText" property for this to work.

if (FileDocument.Shapes.Range(1).TextFrame.HasText != 0)
{
    Fieldstring.Add(FileDocument.Shapes.Range(1).TextFrame.TextRange.Text.ToString());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文