PPT DOCX XLSX PDF ODP
Aspose.Slides  for C++
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 中删除注释

  1. 安装Aspose.Slides for C++。请参阅 安装

  2. 使用 Presentation 类的实例加载 PPTX

  3. 遍历加载的 PPTX 的所有作者

  4. 删除作者的所有评论

  5. 最后删除所有作者

其他支持的注释格式

使用 C++,可以轻松地注释其他格式,包括。