The following example shows the effect that this parameter has
on HTML rendering.
[C#]
Doc theDoc = new Doc();
// Covert html form fields to the pdf form fields in the output
file
theDoc.HtmlOptions.AddForms = true;
int id = theDoc.AddImageUrl("http://www.websupergoo.com/download.htm");
// Save the document
theDoc.Save(Server.MapPath("HtmlOptionsAddForms.pdf"));
theDoc.Clear();
[Visual Basic]
Dim theDoc As Doc = New Doc()
' Covert html form fields to the pdf form fields in the output file
theDoc.HtmlOptions.AddForms = True
Dim id As Integer = theDoc.AddImageUrl("http://www.websupergoo.com/download.htm")
' Save the document
theDoc.Save(Server.MapPath("HtmlOptionsAddForms.pdf"))
theDoc.Clear()

HtmlOptionsAddForms.pdf
|