如何在iTextSharp

时间:2016-08-01 12:05:30

标签: .net c#-4.0 itext

PdfPTable.HeaderRows属性为行数,它为您提供了所有三行..

PdfPTable table = new PdfPTable(11);
table.DefaultCell.Padding = 11;
table.WidthPercentage = 96;
table.DefaultCell.BorderWidth = 1;
table.SplitLate = false;
table.SplitRows = true;
table.HeaderRows =3;`

上面的代码将重复页面的所有前三行作为标题返回...但我只想重复第三行作为标题...

0 个答案:

没有答案