The following example shows the effect that this parameter has
on HTML rendering.
using (Doc doc = new Doc()) {
// Covert html form fields to the pdf form fields in the output file
doc.HtmlOptions.AddForms = true;
int id = doc.AddImageUrl("https://www.websupergoo.com/thank-you-for-downloading.aspx");
// Save the document
doc.Save(Server.MapPath("HtmlOptionsAddForms.pdf"));
}
Using doc As New Doc()
' Covert html form fields to the pdf form fields in the output file
doc.HtmlOptions.AddForms = True
Dim id As Integer = doc.AddImageUrl("https://www.websupergoo.com/thank-you-for-downloading.aspx")
' Save the document
doc.Save(Server.MapPath("HtmlOptionsAddForms.pdf"))
End Using