PPT
DOCX
XLSX
PDF
ODP
PPTX
在 C# 中從 PPTX 中刪除評論和評論作者
構建您自己的 .NET 應用程序以使用服務器端 API 操作文檔文件中的評論和作者。
通過 C# 從 PPTX 中刪除評論
為了從 PPTX 文件中刪除註釋,我們將使用 Aspose.Slides for .NET API,它功能豐富、功能強大且易於使用用於 C# 平台的文檔操作 API。
從 PPTX 中刪除註釋 - C#
using (Presentation presentation = new Presentation("example.pptx"))
{
// 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# 從 PPTX 中刪除評論
安裝 Aspose.Slides for .NET。請參閱 安裝 。
使用 Presentation 類的實例加載 PPTX
遍歷加載的 PPTX 的所有作者
刪除作者的所有評論
最後刪除所有作者