Render specific pages
With GroupDocs.Viewer you can specify a list of the document pages to be rendered. Follow the below steps to achieve this functionality.
- Instantiate the Viewer object;
- Instantiate the HtmlViewOptions (or JpgViewOptions, or PngViewOptions, or PdfViewOptions) object;
- Pass desired page numbers to View method.
- The following code sample shows how to render N consecutive pages of a document.
The following code sample shows how to render the first and third pages of a document.
using (Viewer viewer = new Viewer("sample.docx"))
{
HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources();
viewer.View(viewOptions, 1, 3);
}