0
我想播放我正在通過Powerpoint對象自動化模型進行控制和管理的演示文稿。 Pouwerpoint 2013. 我期望Presentation對象有一個播放或運行方法,但它沒有。 是否可以做到這一點,如果是這樣,如何? 要清楚我想要做的事,如:如何使用Powerpoint對象模型播放演示文稿
var app = new Powerpoint.Application();
var presentation = app.Presentations.Open(filename);
ManipulateStuffInPresentation(presentation);
presentation.Run();
但沒有運行方法。
完美,謝謝。 –