我有3個代碼片段:PdfPTable設置
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);
我想知道是什麼表數組中的設置表示。
您是否試過iText的官方文檔? –
我想知道爲什麼你沒有找到這些信息,因爲它位於Javadoc中,當你將鼠標懸停在關鍵字上時,所有常見的IDE(IDEA,Eclipse,Netbeans,...)都會在其「intellisense」中顯示該信息。我需要更多的信息,@ cactus。 –