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挿入されたページをアクティブとして選択するかどうかを示すフラグ。

戻り値

ページを挿入しました。

関連項目