RemovePageRedaction

RemovePageRedaction class

表示从文档中删除页面(幻灯片、工作表等)的修订。

public class RemovePageRedaction : Redaction

构造函数

姓名 描述
RemovePageRedaction(PageSeekOrigin, int, int) 初始化 RemovePageRedaction 类的新实例。

特性

姓名 描述
Count { get; } 获取要删除的页数。
virtual Description { get; } 返回一个字符串,描述修订及其参数。
Index { get; } 获取起始位置索引(从 0 开始)。
Origin { get; } 获取查找参考位置,文档的开头或结尾。

方法

姓名 描述
override ApplyTo(DocumentFormatInstance) 将编辑应用到给定的格式实例。

评论

了解更多

例子

以下示例演示如何删除文档的最后一页。

using (Redactor redactor = new Redactor(@"C:\test.pdf"))
{
   redactor.Apply(new RemovePageRedaction(PageSeekOrigin.End, 0, 1));
   redactor.Save()
}

也可以看看