Custom Nodes Square9.CustomNode SDK Methods Current: RemovePage Method RemovePage Method Removes a page from the process at a specified index and deletes it from the file system. public void RemovePage(int index); CODE Classes: Document Parametersint indexThe zero-based index of the page to remove. ExampleThe following example demonstrates removing the first page of a document. Process.Document.RemovePage(0); CODE RemarksThrows an InvalidOperationException if called on a GlobalAction process.Throws an IndexOutOfRangeException if the target index is too large for the document. ×