16
如何设置表格单元格的边框颜色。这里是我有的代码:ITextSharp:设置表格单元格边框颜色
// create and define table
var table = new PdfPTable(8);
table.HorizontalAlignment = Element.ALIGN_CENTER;
//table.HeaderRows = 1;
// the cell object
PdfPCell cell;
var f = FontFactory.GetFont("Tahoma", 11, Font.BOLD);
cell = new PdfPCell(new Phrase("Source Review", f));
cell.BorderColorLeft = new BaseColor(255, 255, 255);
cell.BorderColorRight = new iTextSharp.text.BaseColor(255, 255, 255);
table.AddCell(cell);
正如你可以看到我设置颜色两种不同的方式,并没有办法工作。表格呈现时,边框始终为黑色。我怎样才能解决这个问题。