Hi,
Yes. You will need to handle the control's AfterRender event. Inside the event you will need to get the HtmlToPdfResult object:
http://www.essentialobjects.com/doc/1/eo.web.aspxtopdf.afterrender.aspxOnce you have that object, you can do something like this:
Code: C#
//Get the HtmlElement object. There are a number of GetElementByXXX
//methods, you can check the documentation to see which one fits you
//the best
HtmlElement e = result.HtmlDocument.GetElementById(element_id);
Once you have the HtmlElement, you can use the element's Location and Size to determine the exact location (page index, x/y location) and size of the element.
Thanks!