Versions Compared

Key

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


Excerpt

Inserts a file page to the process at a specific index.


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

Classes: Document


Parameters

string path

Path pointing to the page to insert into the process.

int index

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


Example

The following example demonstrates inserting a page at the beginning of a mult-page document.

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

Remarks

Throws an InvalidOperationException if called on a GlobalAction process.

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

This method only supports adding single page files. If you wish to insert multiple pages, please separate the document into single page files through other means before adding them using this method or the AddPage method.

You can only add PDF and TIF/TIFF files to a process document. Additionally, you can only add a file to a document if it matches the extension of the existing document. For example, it is not supported to add a TIF file to a PDF document.