PPT
DOCX
XLSX
PDF
ODP
PPTX
在 C++ 中從 PPTX 中刪除評論和評論作者
構建您自己的 C++ 應用程序,以使用服務器端 API 操作文檔文件中的評論和作者。
通過 C++ 從 PPTX 中刪除評論
為了從 PPTX 文件中刪除註釋,我們將使用 Aspose.Slides for C++ API,它功能豐富、功能強大且易於使用用於 C++ 平台的文檔操作 API。
從 PPTX 中刪除註釋 - C++
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System::Drawing;
auto presentation = System::MakeObject<Presentation>(u"example.pptx");
// Deletes all comments from the presentation
for (auto author : presentation->get_CommentAuthors())
{
author->get_Comments()->Clear();
}
// Deletes all authors
presentation->get_CommentAuthors()->Clear();
presentation->Save(u"example_out.pptx", SaveFormat::Pptx);
如何通過 C++ 從 PPTX 中刪除註釋
安裝Aspose.Slides for C++。請參閱 安裝 。
使用 Presentation 類的實例加載 PPTX
遍歷加載的 PPTX 的所有作者
刪除作者的所有評論
最後刪除所有作者