1
私のiText
dllを4.xから5.xにアップデートしました。Table
、Cell
、およびHeaderFooter
のオブジェクトはありません。これらは廃止されましたか?より新しい方法に変換する簡単な方法はありますか?あらゆる洞察が歓迎されます。itext 5.1オブジェクトがありません
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");
これはあなたが意味するHeaderFooterですか:http://stackoverflow.com/questions/2598917/itextsharp-is-missing-headerfooter-class? –