This property determines whether form fields in HTML are
reproduced as form fields in the final PDF output.
Form fields in PDF do not work exactly the same as form fields
in HTML, so while the results will be similar, they may not be
identical.
Example
The following example shows the effect that this parameter has
on HTML rendering.
Set theDoc = Server.CreateObject("ABCpdf13.Doc")
' Covert html form fields to the pdf form fields in the output
file
theDoc.HtmlOptions.AddForms = True
id =
theDoc.AddImageUrl("http://www.websupergoo.com/download.htm")
' Save the document
theDoc.Save "c:\mypdfs\HtmlOptionsAddForms.pdf"