引言
幻灯片是 powerpoint 文档中最基本的组成部分。每个 powerpoint 演示文稿都由一系列幻灯片构成,每张幻灯片可包含文本、形状、表格和图片等不同元素。在编辑 powerpoint 文档时,添加和删除幻灯片往往是最常用的操作之一。本文将介绍如何使用 spire.presentation for .net 通过编程方式添加或删除 powerpoint 幻灯片。
安装 spire.presentation for .net
首先,需要将 spire.presentation for .net 包中包含的 dll 文件添加为 .net 项目的引用。
这些 dll 文件可以通过以下两种方式获取:从指定链接下载,或通过 nuget 进行安装。
pm> install-package spire.presentation
在 powerpoint 文档末尾添加新幻灯片
通过 spire.presentation for .net 提供的 presentation.slides.append() 方法,可以在 powerpoint 文档的最后一张幻灯片之后追加一张新的幻灯片。
示例代码如下:
using spire.presentation;
namespace addnewslideinpowerpoint
{
class program
{
static void main(string[] args)
{
//初始化 presentation 类的实例
presentation presentation = new presentation();
//加载示例 powerpoint 文档
presentation.loadfromfile("sample.pptx");
//在文档末尾添加一张新幻灯片
presentation.slides.append();
//保存结果文档
presentation.savetofile("addslide.pptx", fileformat.pptx2013);
}
}
}在 powerpoint 中在指定幻灯片前插入新幻灯片
有时,你可能需要在某张特定幻灯片之前插入一张新幻灯片,以添加额外的辅助信息。
示例代码如下:
using spire.presentation;
namespace insertslideinpowerpoint
{
class program
{
static void main(string[] args)
{
//创建 presentation 对象
presentation presentation = new presentation();
//加载示例 powerpoint 文档
presentation.loadfromfile("sample.pptx");
//在第二张幻灯片之前插入一张空白幻灯片
presentation.slides.insert(1);
//保存结果文档
presentation.savetofile("insertslide.pptx", fileformat.pptx2013);
}
}
}从 powerpoint 文档中删除指定幻灯片
如果你想从文档中移除不需要的幻灯片,可以使用 presentation.slides.removeat(int index) 方法。
示例代码如下:
using spire.presentation;
namespace deletepowerpointslide
{
class program
{
static void main(string[] args)
{
//创建 presentation 对象
presentation presentation = new presentation();
//加载示例 powerpoint 文档
presentation.loadfromfile("sample.pptx");
//删除第一张幻灯片
presentation.slides.removeat(0);
//保存结果文档
presentation.savetofile("removeslide.pptx", fileformat.pptx2013);
}
}
}申请临时许可证
如果你希望从生成的文档中去除评估信息,或解除功能限制,可以联系官方申请一个为期 30 天的试用许可证。
到此这篇关于使用c#代码添加或删除ppt幻灯片的操作指南的文章就介绍到这了,更多相关c#添加或删除ppt幻灯片内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!
发表评论