Skip to content
ComPDF
Guides

Select Page Range for Conversion

ComPDF Conversion SDK supports converting a specified page range. When an empty string is passed, all pages will be converted. If the page range exceeds one page, you can also choose to enable the outputDocumentPerPage option to output each PDF page as a separate file. The following example demonstrates how to specify a page range when performing a conversion task:

kotlin
val wordOptions = WordOptions();
wordOptions.outputDocumentPerPage = true
wordOptions.pageRanges = "1-3,5,7-9"