itext 5.1对象丢失
本文关键字:对象 itext | 更新日期: 2023-09-27 17:59:41
我将iText
dll从4.x更新为5.x,并且没有Table
、Cell
和HeaderFooter
的对象。这些是被否决的还是什么?有没有一种快速转换为新方式的方法?欢迎任何见解。
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");
尝试iTextSharp.text.pdf.PdfPTable
和iTextSharp.text.pdf.PdfPCell
。
下面是一个如何使用它们的示例。