JavaScript is not enabled in your browser. You must enable JavaScript to browse this website. See here for detailed instruction on how to enable JavaScript.
EO.Pdf can load a PDF file with fill-in form, fill the form fields and then save the filled document. The following sample demonstrates how to do this:
//Load the PDF file PdfDocument doc = new PdfDocument("c:\\registration.pdf"); //Get the First_Name field PdfField field = doc.Fields["First_Name"]; //Set the field value field.Value = "John"; //Save it back doc.Save("c:\\registration.pdf");
'Load the PDF file Dim doc As New PdfDocument("c:\registration.pdf") 'Get the First_Name field Dim field As PdfField = doc.Fields("First_Name") 'Set the field value field.Value = "John" 'Save it back doc.Save("c:\registration.pdf")
Product Documentation
All features are explained in great details in the product documentation. It also contains complete reference information for each type, property or method;
Samples
The download package contains a wide variety of samples with full C# and Visual Basic.NET source code that demonstrate how to use different feature of the EO.Pdf library.
Technical Support
Still have questions? Post in our support forum or contact us and we will answer them quickly. Our turn around time is among the best in the industry.