Currently I save the pages one at a time then merge them afterwords.
Official response
Hi, This feature request has been implemented and is available in the latest versions of GemBox.Document. To save a range of pages from Word document to PDF, use this: var document = DocumentModel.Load("Input.docx"); var paginator = document.GetPaginator(); paginator.GetRange(1, 3).Save("Output.pdf"); Regards, Mario
Comment (1)