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;`
上面的代码将重复页面的所有前三行作为标题返回...但我只想重复第三行作为标题...