Move page

GroupDocs.Merger provides a move page feature which allows you to manipulate page ordering by moving any page(s) to new position within a document. 
This can be done by following the steps below:

  • Initialise MoveOptions class and specify current and new page numbers;
  • Instantiate Merger object with source document path or InputStream;
  • Call movePage method and pass MoveOptions object to it;
  • Call save method and pass desired file path to save resultant document.

The following code sample demonstrates on how to move page to a new position:

with gm.Merger("c:/sample.xlsx") as merger:
    move_options = gm.domain.options.MoveOptions(2, 1)
    merger.move_page(move_options)
    merger.save("c:/result.xlsx")