Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Excerpt

Replaces a page at a specific index on the process with another page.


Code Block
public void ReplacePage(int index, string path);

Classes: Document


Parameters

int index

The zero-based index at which the page should be replaced.

int path

Path pointing to the page to add to the process.


Example

The following example demonstrates replacing the first page of a document with another document by file path.

Code Block
Process.Document.ReplacePage(0, @"C:\Documents\page.pdf");

Remarks

Throws an InvalidOperationException if called on a GlobalAction process.

Throws an IndexOutOfRangeException if the target index is too large for the document.