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:

const inputFilePath = `c:/sample.xlsx`; 
const merger = new groupdocs.merger.Merger(inputFilePath);
const outputPath = `c:/output/result.xlsx`;
const moveOptions = new groupdocs.merger.MoveOptions(2, 1);
merger.movePage(moveOptions);
merger.save(outputPath);