阅读使用 C# .NET 在 PowerPoint 中添加更新和删除幻灯片注释

PowerPoint 演示文稿中的幻灯片注释用于为演示者添加参考,以便在演示过程中回忆重点。这些注释可以添加到 PowerPoint 演示文稿的每张幻灯片中。本文还介绍了以编程方式处理演示文稿中的幻灯片注释的一些重要方面。

阅读本文后,您将能够:

使用 Aspose.Slides for .NET 处理幻灯片注释

为了在 PowerPoint 中使用幻灯片注释,我们将使用 Aspose.Slides for .NET - 一个强大的 PowerPoint 自动化 API,支持创建、更新、解析和转换演示文档。您可以 下载 API 或使用以下选项安装它:

使用 NuGet 包管理器

在 PowerPoint C# .NET 中阅读或更新幻灯片注释

使用包管理器控制台

PM> Install-Package Aspose.Slides.NET

从 C# 中的 PowerPoint 演示文稿中读取幻灯片注释

为了在 PowerPoint 中访问幻灯片笔记,Aspose.Slides for .NET 提供了 INotesSlideManager 接口。 INotesSlideManager 允许您访问、阅读、添加和更新幻灯片注释。以下是从 PowerPoint 演示文稿中阅读幻灯片注释的步骤。

以下代码示例演示如何使用 C# 从 PowerPoint PPTX 读取幻灯片注释。

// 加载 PowerPoint 演示文稿
Presentation presentation = new Presentation("presentation.pptx");
INotesSlideManager mgr = presentation.Slides[0].NotesSlideManager;
// 阅读幻灯片注释
INotesSlide note = mgr.NotesSlide;
Console.Write(note.NotesTextFrame.Text);

在 C# 中为 PowerPoint 幻灯片添加注释

以下是向 PowerPoint 演示文稿中的特定幻灯片添加注释的步骤。

  • 在 Presentation 对象中加载 PowerPoint 演示文稿。
  • 访问特定幻灯片的 NotesSlideManager。
  • 使用 INotesSlide 界面添加新笔记。
  • 使用 Presentation.Save(String, SaveFormat) 方法保存演示文稿。

以下代码示例演示如何使用 C# 将幻灯片注释添加到 PowerPoint PPTX。

// 加载 PowerPoint 演示文稿
Presentation presentation = new Presentation("presentation.pptx");
INotesSlideManager mgr = presentation.Slides[0].NotesSlideManager;
// 添加新的幻灯片注释
INotesSlide note = mgr.AddNotesSlide();
note.NotesTextFrame.Text = "new slide note";
// 保存演示文稿
presentation.Save("added-slide-notes.pptx", SaveFormat.Pptx);

使用 C# 更新 PowerPoint 演示文稿中的幻灯片注释

为了更新特定演示幻灯片中的注释,您将以与阅读注释相同的方式访问 NotesSlide。访问幻灯片注释后,您可以使用 INotesSlide.NotesTextFrame.Text 属性简单地更新文本。完成后,使用 Presentation.Save(String, SaveFormat) 方法保存演示文件。

以下代码示例演示如何使用 C# 更新 PowerPoint 演示文稿中的幻灯片注释。

// 加载 PowerPoint 演示文稿
Presentation presentation = new Presentation("presentation.pptx");
INotesSlideManager mgr = presentation.Slides[0].NotesSlideManager;
// 访问幻灯片注释
INotesSlide note = mgr.NotesSlide;
// 更新幻灯片注释的文本 
note.NotesTextFrame.Text = "this is updated note";
// 保存演示文稿
presentation.Save("updated-slide-notes.pptx", SaveFormat.Pptx);

使用 C# 删除 PowerPoint 演示文稿中的幻灯片注释

要从 PowerPoint 演示文稿中删除幻灯片注释,只需调用 INotesSlideManager.RemoveNotesSlide() 方法并保存演示文稿文件。以下代码示例演示如何使用 C# 从 PowerPoint 演示文稿中删除幻灯片注释。

// 加载 PowerPoint 演示文稿
Presentation presentation = new Presentation("presentation.pptx");
INotesSlideManager mgr = presentation.Slides[0].NotesSlideManager;
// 删除幻灯片注释
mgr.RemoveNotesSlide();
// 保存演示文稿
presentation.Save("removed-slide-notes.pptx", SaveFormat.Pptx);

也可以看看

免费试用 Aspose.Slides for .NET

您可以使用免费的 临时许可证 试用 Aspose.Slides for .NET。