/
GetPages Method

GetPages Method

Gets the full list of page file paths from the process.

public string GetPages();

Classes: Document


Example

The following example demonstrates getting all the page paths of a GlobalCapture process document.

var pages = Process.Document.GetPages();
foreach (var pagePath in pages) 
{
	//
}

Remarks

Throws an InvalidOperationException if called on a GlobalAction process.

Related content

Process Class
Process Class
Read with this
GetPage Method
GetPage Method
More like this
CaptureDocument Class
CaptureDocument Class
Read with this
AddPage Method
AddPage Method
More like this
CaptureProcess Class
CaptureProcess Class
More like this
ActionDocument Class
ActionDocument Class
More like this