Hi,
I do not think there is anyway to do this through EO.WebBrowser. However if you use EO.Pdf to create the PDF file, it is possible for you to set this property:
http://www.essentialobjects.com/doc/4/eo.pdf.pdfviewerpreference.initialdestination.aspxThis set the "initial view" of the PDF file so that when PDF viewer (or the plug-in) loads that file, it will automatically scroll the file to that position. The following code demonstrates how to do this:
Code: C#
//Convert the HTML to PDF
PdfDocument doc = new PdfDocument();
HtmlToPdfResult result = HtmlToPdf.ConvertUrl(url, doc);
//Locate an HTML element in the conversion result
HtmlElement targetElement = result.HtmlDocument.GetElementById(target_element_id);
//Set the initial position to that element
doc.ViewerPreference.InitialDestination = targetElement.CreateBookmark().Destination;
doc.Save(pdf_file_name);
Hope this helps.
Thanks!