Did you find this guide helpful?
Some test text!
Web / Guides / Reorder pages
Pages in the PDF document can be reordered using the movePages function.
WebViewer(...)
.then(instance => {
const { documentViewer } = instance.Core;
documentViewer.addEventListener('documentLoaded', async () => {
const doc = documentViewer.getDocument();
const page1 = 1, page2 = 2, page3 = 3;
const pagesToMove = [page2, page3];
const insertBefore = page1;
await doc.movePages(pagesToMove, insertBefore);
// pages are now in the order of [page2, page3, page1];
});
});
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales