Custom Nodes Square9.CustomNode SDK Methods Current: GetPage Method GetPage Method Gets a page file path from the process at a specified index. public string GetPage(int index); CODE Classes: Document Parametersint indexThe zero based index of the page. ExampleThe following example demonstrates getting the path of a page within a GlobalCapture process. var pagePath = Process.Document.GetPage(0); CODE RemarksThrows an InvalidOperationException if called on a GlobalAction process.Throws an IndexOutOfRangeException if there is no page at the requested index. ×