/
GetPage Method

GetPage Method

Gets a page file path from the process at a specified index.

public string GetPage(int index);

Classes: Document


Parameters

int index

The zero based index of the page.


Example

The following example demonstrates getting the path of a page within a GlobalCapture process.

var pagePath = Process.Document.GetPage(0);

Remarks

Throws an InvalidOperationException if called on a GlobalAction process.

Throws an IndexOutOfRangeException if there is no page at the requested index.

Related content

GetPages Method
GetPages Method
More like this
CaptureDocument Class
CaptureDocument Class
More like this
InsertPage Method
InsertPage Method
More like this
RemovePage Method
RemovePage Method
More like this
ReplacePage Method
ReplacePage Method
More like this
AddPage Method
AddPage Method
More like this