4

我正在为 PowerPoint 构建一个加载项,需要访问 Slides 或 Slide 对象,甚至是整个演示文稿;唉,我能看到的唯一方法是打开一个的ppt 文件。现在我不得不求助于保存当前演示文稿并使用 Packaging 重新打开它以操作任何东西的 hacky 方法(更具体地说,我必须对 pptx 文件中的 Slide 对象进行 SHA 以查看它们是否已更改 -不理想)

有什么方法可以打开当前在 PowerPoint 中打开的文件,而无需 IO 文件?

谢谢你的帮助,P

4

1 回答 1

0

我假设您已经在 VisualStudio 中创建了一个 PowerPoint (2007/2010) 加载项项目。通常,您可以通过以下方式使用静态类访问活动演示文稿Globals

Globals.ThisAddIn.Application.ActivePresentation.Slides[slideIndex] ...

编辑:用法示例:

using PowerPoint = Microsoft.Office.Interop.PowerPoint;

...

try
{
    int numberOfSlides = Globals.ThisAddIn
        .Application.ActivePresentation.Slides.Count;

    if (numberOfSlides > 0)
    {
        // get first slide
        PowerPoint.Slide firstSlide = Globals.ThisAddIn
            .Application.ActivePresentation.Slides[0];

        // get first shape (object) in the slide
        int shapeCount = firstSlide.Shapes.Count;

        if (shapeCount > 0)
        {
            PowerPoint.Shape firstShape = firstSlide.Shapes[0];
        }

        // add a label
        PowerPoint.Shape label = firstSlide.Shapes.AddLabel(
                Orientation: Microsoft.Office.Core
                   .MsoTextOrientation.msoTextOrientationHorizontal,
                Left: 100,
                Top: 100,
                Width: 200,
                Height: 100);

        // write hello world with a slidenumber
        label.TextFrame.TextRange.Text = "Hello World! Page: ";
        label.TextFrame.TextRange.InsertSlideNumber();
    }
}
catch (Exception ex)
{
    System.Windows.Forms.MessageBox.Show("Error: " + ex);

}
于 2012-10-02T10:32:35.450 回答