我有3个代码段:
float[] lfA_tables = {3, 44, 6, 44, 3};
lptbl_table = new PdfPTable(lfA_tables);
lptbl_table.setWidthPercentage(100f);
和
float[] lfA_tables1 = {2, 40, 2};
lptbl_table1 = new PdfPTable(lfA_tables1);
lptbl_table1.setWidthPercentage(46);
最后
float[] lfA_tables2 = {2, 40, 2};
lptbl_table2 = new PdfPTable(lfA_tables2);
lptbl_table2.setWidthPercentage(46);
我想知道表数组中的设置代表什么。
答案 0 :(得分:1)
PdfPTable
的构造函数:
PdfPTable(float[] relativeWidths)
使用相对列宽构造
PdfPTable
。
和
setWidthPercentage(float widthPercentage)
设置表格在页面中占据的宽度百分比。
有关所有未来请求,请参阅iText文档 http://itextsupport.com/apidocs/itext5/latest/