Create PDF from Template

Hi,

My application is in c# asp.net 1.1.
I have one sample PDF temaplate with acroforms.
I want to populate the form fields and create the PDF.
Is it possible through Syncfusion.
If yes please send me the code sample.

1 Reply

BP Bhuvaneswari P Syncfusion Team October 8, 2007 07:21 AM UTC

Hi mzmishra,

Yes, it is possible to populate the form fields and create PDF document in ASP.net with framework version 1.1.

Code snippet:
//To create Text field inside the PDF document
PdfTextBoxField companyTextBox = new PdfTextBoxField(page, "companyTextBox");
companyTextBox.Bounds = new RectangleF(100, 80, 200, 20);
companyTextBox.Font = font;
document.Form.Fields.Add(companyTextBox);

Please download the sample from the below link.
http://websamples.syncfusion.com/samples/PDF.Windows/F68919/main.htm

Please let me know if you have any other queries.

Thank you for your interest in Syncfusion products.

Best Regards,
Bhuvana

Loader.
Up arrow icon