Swap pages

GroupDocs.Merger allows to swap two pages positions within the source document. The result is a new document where two pages have their positions exchanged.

Here are the steps to swap document pages:

  • Initialize SwapOptions class with page numbers to swap;
  • Instantiate Merger object with source document path or InputStream;
  • Call swapPages method and pass SwapOptions object to it;
  • Call save method specifying file path to save resultant document.

The following code sample demonstrates how to split document:

with gm.Merger("c:/sample.pptx") as merger:
    swap_options = gm.domain.options.SwapOptions(1, 3)
    merger.swap_pages(swap_options)
    merger.save("c:/result.pptx")