Custom Nodes Square9.CustomNode SDK Methods Current: GetPages Method GetPages Method Gets the full list of page file paths from the process. public string GetPages(); CODE Classes: Document ExampleThe following example demonstrates getting all the page paths of a GlobalCapture process document. var pages = Process.Document.GetPages(); foreach (var pagePath in pages) { // } CODE RemarksThrows an InvalidOperationException if called on a GlobalAction process. ×