缺少itext 5.1对象

时间:2011-06-21 13:59:21

标签: c# itextsharp

我将iText dll从4.x更新为5.x,并且TableCellHeaderFooter没有对象。这些被弃用了还是什么?有没有快速转换为更新的方式?欢迎任何见解。

DateTime previousDate = list[0].StartDateTime;
                Table headerTable = new Table(1, 1);
                Cell headerCell = new Cell(list[0].TimeZoneStartDateTime.ToLongDateString());
                headerCell.BackgroundColor = Color.LIGHT_GRAY;
                headerTable.AddCell(headerCell);
                headerTable.Padding = 3;
                headerTable.Width = 100;
                headerTable.SetAlignment("Left");

1 个答案:

答案 0 :(得分:0)

尝试iTextSharp.text.pdf.PdfPTableiTextSharp.text.pdf.PdfPCell

以下是example如何使用它们。