0

我想播放我通过 Powerpoint 对象自动化模型控制和管理的演示文稿。Pouwerpoint 2013。我希望 Presentation 对象有一个 play 或 run 方法,但它没有。是否有可能做到这一点,如果可以,怎么做?要清楚,我想做类似的事情:

var app = new Powerpoint.Application();
var presentation = app.Presentations.Open(filename);
ManipulateStuffInPresentation(presentation);
presentation.Run();

但是没有 Run 方法。

4

1 回答 1

1
presentation.SlideShowSettings.Run();
于 2013-11-28T16:59:50.377 回答