PPTX
DOCX
XLSX
PDF
ODP
PPT
在 C# 中从 PPT 中删除评论和评论作者
构建您自己的 .NET 应用程序以使用服务器端 API 操作文档文件中的评论和作者。
C#去除PPT评论
为了从 PPT 文件中删除注释,我们将使用 Aspose.Slides for .NET API,它功能丰富、功能强大且易于使用用于 C# 平台的文档操作 API。
从 PPT 中删除注释 - C#
using (Presentation presentation = new Presentation("example.ppt"))
{
// Deletes all comments from the presentation
foreach (var author in presentation.CommentAuthors)
{
author.Comments.Clear();
}
// Deletes all authors
presentation.CommentAuthors.Clear();
presentation.Save("example_out.pptx", SaveFormat.Pptx);
}
如何通过C#去除PPT中的评论
安装 Aspose.Slides for .NET。请参阅 安装 。
使用 Presentation 类的实例加载 PPT
遍历加载 PPT 的所有作者
删除作者的所有评论
最后删除所有作者