-1

我正在尝试编写此 C# 的 C++/cli 等效项:

// Create a PowerPoint application object.
PowerPoint.Application appPPT = new PowerPoint.Application();

// Create a new PowerPoint presentation.
PowerPoint.Presentation pptPreso = appPPT.Presentations.Add();

我有第一行:

ppt::Application^ PPT = gcnew ppt::ApplicationClass();

但我还没有弄清楚如何做第二部分,有人可以告诉我如何添加新的 PowerPoint 演示文稿吗?

4

1 回答 1

1
PowerPoint::Presentation ^pptPreso = appPPT->Presentations->Add();
于 2013-06-12T22:18:45.527 回答