首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

itext设立默认NO_BORDER表格

2012-12-25 
itext设置默认NO_BORDER表格读到itext in action第6章6.1.3,有个函数getDefaultCell(),查看该函数的API???

itext设置默认NO_BORDER表格

读到itext in action第6章6.1.3,有个函数getDefaultCell(),查看该函数的API

?

?

?

PdfPCell com.lowagie.text.pdf.PdfPTable.getDefaultCell()

?

Gets the default PdfPCell that will be used as reference for all the addCell methods except addCell(PdfPCell).

?

那么就是说你使用new PdfPCell就有border

?

?

那再查看PdfPCell的构造函数。以PdfPCell()和PdfPCell(Phrase)为例,发现的确有默认的border。

?

itext设立默认NO_BORDER表格

?

?

参照第6章的代码PdfPTableWithoutBorders做小小的改动

?

?

请注意addCell(new PdfPCell())和addCell(new Paragraph())的区别

?

PdfPCell cell = new PdfPCell(new Paragraph("header with colspan 3"));table.addCell(cell);table.addCell(new Paragraph("header with colspan 3"));
?

?

参考资料:itext in action 2006版itext-2.0.8

?

?

?

?

?

?

?

?

?

?

?

?

?

?

?

?

热点排行