赞
踩
目录
在 PowerPoint 中管理页眉和页脚的 .NET API
PowerPoint 演示文稿中的页眉和页脚用于显示幻灯片编号、作者、日期等附加信息。
为了在 PowerPoint 演示文稿中使用页眉和页脚,我们将使用Aspose.Slides for .NET。它是一个 .NET 类库,可让您创建和操作 PowerPoint 和 OpenOffice 文档。您可以从下载部分下载 API 的 DLL 。此外,API 可以通过NuGet安装 。
PM> Install-Package Aspose.Slides.NET
使用 C# 在 PowerPoint 中添加页眉和页脚
以下是使用 C# 在 PowerPoint 演示文稿中添加页眉和页脚的步骤。
以下代码示例展示了如何在 PowerPoint 演示文稿中添加页眉和页脚。
- // Load Presentation
- Presentation pres = new Presentation("headerTest.pptx");
-
- // Set Footer
- pres.HeaderFooterManager.SetAllFootersText("My Footer text");
- pres.HeaderFooterManager.SetAllFootersVisibility(true);
-
- // Access and Update Header
- IMasterNotesSlide masterNotesSlide = pres.MasterNotesSlideManager.MasterNotesSlide;
- if (null != masterNotesSlide)
- {
- foreach (IShape shape i
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。