|
1金钱
private PdfPCell MakeCell(string strData, byte iCol)
{
iTextSharp.text.Font CellFont = iTextSharp.text.FontFactory.GetFont("Arial", 8, iTextSharp.text.Font.NORMAL);
PdfPCell cell = new PdfPCell();
cell.Colspan = iCol;
Paragraph parag = new Paragraph(strData, CellFont);
cell.AddElement(parag);
return cell;
}
PdfPTable table = new PdfPTable(4); //这个4不是代表有4列吗???
table.AddCell(MakeCell("No.", 1));
table.AddCell(MakeCell("Mode", 2));
table.AddCell(MakeCell("OBIS", 3));
table.AddCell(MakeCell("Description", 4));
//table.SetWidths(new int[] { 10, 20, 20, 50 });
为何只有3列,Description这列到了第2行?这是啥原因?
当new PdfPTable(5);new PdfPTable(6);都只有3列,当new PdfPTable(7);new PdfPTable(8);new PdfPTable(9);new PdfPTable(10);有4列了,为何会这样?
敬请各位老师指点!谢谢!
|
|