Hi,
I am going to geneate pdf. currently everything is working fine
my requirement is that i need to develope one table sturtcure
i am not getting how to implement
this was below code i have tried my end
PdfPTable table6 = new PdfPTable(2);
table6.WidthPercentage = 100;
table6.HorizontalAlignment = 0;
table6.SpacingBefore = 20f;
table6.SpacingAfter = 30f;
//table6.DefaultCell.Border = 0;
PdfPCell cell66 = new PdfPCell(new Phrase("TYPE OF COVER"));
cell66.Colspan = 2;
cell66.HorizontalAlignment = Element.ALIGN_CENTER;
table6.AddCell(cell66);
table6.AddCell("Public Liability Insurance");
PdfPCell cellBlankRow10 = new PdfPCell(new Phrase(" "));
table6.AddCell(cellBlankRow10);
table6.AddCell("");
table6.AddCell("");
table6.AddCell("Insured Name:");
table6.AddCell("");
table6.AddCell(""+insuredName);
PdfPCell cellBlankRow11 = new PdfPCell(new Phrase(" "));
table6.AddCell(cellBlankRow11);
table6.AddCell("");
table6.AddCell("");
table6.AddCell("Business of the Insured:");
table6.AddCell("");
table6.AddCell(""+1000);
PdfPCell cellBlankRow12 = new PdfPCell(new Phrase(" "));
table6.AddCell(cellBlankRow12);
table6.AddCell("");
table6.AddCell("");
for generating pdf i am using below url code
in above url code i need to insert one table format
Could you please help me