Versions Compared

Key

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


Excerpt

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


Code Block
public string GetPages();

Classes: Document


Example

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

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

Remarks

Throws an InvalidOperationException if called on a GlobalAction process.