Hi,
You can set FromPage and ToPage property:
Code: C#
PdfDocument doc = new PdfDocument(pdf_file);
PrinterSettings ps = EO.WebBrowser.WebView.GetDefaultPrinterSettings();
ps.FromPage = 1;
ps.ToPage = 2;
doc.Print(ps).WaitOne();
The above code print the second and the third page. Note that both FromPage and ToPage are inclusive and zero based.
Thanks