First we create an ABCpdf Doc object and read in our template
form.
using var doc = new Doc();
doc.Read(Server.MapPath("../mypics/form.pdf"));
doc.Form.NeedAppearances = false; // for PDF 2.0
doc.Font = doc.AddFont("Helvetica-Bold");
Using doc As New Doc()
doc.Read(Server.MapPath("../mypics/form.pdf"))
doc.Form.NeedAppearances = False
' for PDF 2.0
doc.Font = doc.AddFont("Helvetica-Bold")