Is is possible to have the HtmlToolTip display scrollbars for long content?
Possibly have it respond to the mousewheel to scroll up and down?
Possibly have it respond to the mousewheel to scroll up and down?
HtmlRenderer.RenderToImage()
and inserting the images into the PDF."p, li { font-size = xx-small; font-family: \"Trebuchet MS\",Helvetica, sans-serif; line-height: 1; margin: 0px; }"
<table width="100%">
<tr>
<td>
BUYER: <br />
Buyers Name Here<br />
Buyers Address Here<br />
City, State ZIP
</td>
<td>
SELLER:<br />
Sellers Name Here<br />
Sellers Address Here<br />
City<span>, </span>State<span> </span>ZIP<br /><br />
</td>
</tr>
</table>
When I remove this table from the rest of the document, the PDF renders fine.System.Drawing.Image image = TheArtOfDev.HtmlRenderer.WinForms.HtmlRender.RenderToImage(
html,
new System.Drawing.Size(600, 600),
System.Drawing.Color.White);
image.Save(@"C:\Temp\_image_" + DateTime.Now.ToString("yyyyMMdd-hhmmss") + ".png", System.Drawing.Imaging.ImageFormat.Png);
-- end --