6

我有一个包含 3 张幻灯片的 Powerpoint 演示文稿。每张幻灯片都有一个文本框,它是一个占位符。我想替换一张幻灯片上的文本框内容。

我需要知道如何使用 C# 和 OpenXML 做到这一点

万分感谢

4

1 回答 1

3

对每张幻灯片执行此操作,您要更改:

ODP.ShapeTree tree = slide.Slide.CommonSlideData.ShapeTree;
        foreach (ODP.Shape shape in tree.Elements<ODP.Shape>())
        {
            // Run through all the paragraphs in the document
            foreach (ODD.Paragraph paragraph in shape.Descendants().OfType<ODD.Paragraph>())
            {
                foreach (ODD.Run run in paragraph.Elements<ODD.Run>())
                {
                    if (run.Text.InnerText.Contains("PLACEHOLDER"))
                    {
                        run.Text = new ODD.Text("Your new text");
                    }
                }
            }
        }

请记住,如果您的模板的占位符包含空格,这可能会创建两个单独的运行元素。因此,您可能会得到一个带有 run.text 为“Place”的 run 和另一个带有 run.Text “holder”的 run 元素,而不是一个 run.Text 为“Place holder”的元素。

于 2013-12-09T15:17:21.370 回答