有没有办法使用JXL为一系列单元格添加边框?一次设置一个单元格的边框非常繁琐。选择一系列单元格并将它们合并起作用,但不确定如何一次为一堆单元格设置边框。
答案 0 :(得分:0)
有一种方法,首先合并单元格然后将边框添加到一个单元格
sheet.mergeCells(ColumnX, rowX, columnY, rowX);
WritableCellFormat cellFormat = new WritableCellFormat();
cellFormat.setBorder(Border.ALL, BorderLineStyle.THIN);
jxl.write.Label lab11 = new jxl.write.Label(columnX, rowX, "Label", cellFormat);
smrysheet.addCell(lab11);
答案 1 :(得分:-1)
使用WritableCellFormat
WritableCellFormat cellFormat = new WritableCellFormat();
cellFormat.setBorder(Border.ALL, BorderLineStyle.THIN);
Label label = new Label(col, row, desc, cellFormat);
sheet.addCell(label);