XpsDocument.InsertPage

InsertPage(int, bool)

以默认页面大小 在文档中插入一个空页面index位置.

public XpsPage InsertPage(int index, bool activate = true)
范围类型描述
indexInt32应插入页面的位置。
activateBoolean指示是否选择插入页面作为活动页面的标志。

返回值

插入的页面。

也可以看看


InsertPage(int, float, float, bool)

将空白页插入到指定 的文档中widthheightindex位置.

public XpsPage InsertPage(int index, float width, float height, bool activate = true)
范围类型描述
indexInt32应插入页面的位置。
widthSingle新页面的宽度。
heightSingle新页面的高度。
activateBoolean指示是否选择插入页面作为活动页面的标志。

返回值

插入的页面。

也可以看看


InsertPage(int, XpsPage, bool)

在文档中插入一页index位置.

public XpsPage InsertPage(int index, XpsPage page, bool activate = true)
范围类型描述
indexInt32应添加页面的位置。
pageXpsPage要插入的页面。
activateBoolean指示是否选择插入页面作为活动页面的标志。

返回值

插入的页面。

也可以看看