gpt4 book ai didi

java - 我将如何删除或使边框不可见我使用 table.completeRow() 完成的单元格

转载 作者:行者123 更新时间:2023-12-01 09:28:57 27 4
gpt4 key购买 nike

这是我的代码,我为商家列创建了一个不可见的边框并完成了该行,商家列没有边框,但该行的其余部分有,我不知道如何使其不可见。

PdfPCell cellMerchantTitle = rowCellStyle("Merchant", fontTitleSize);
cellMerchantTitle.setColspan(2);
table.addCell(cellSystemTitle);
table.completeRow();

public PdfPCell rowCellStyle(String cellValue, Font fontStyle){
PdfPCell cell = new PdfPCell(new Paragraph(cellValue, fontStyle));
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setBorder(Rectangle.NO_BORDER);
return cell;
}

我已经尝试过这个

table.getDefaultCell().setBorder(Rectangle.NO_BORDER);

最佳答案

添加 table.getDefaultCell().setBorder(Rectangle.NO_BORDER); 应该可以解决问题,但您必须确保在完成该行之前添加此行:

table.getDefaultCell().setBorder(Rectangle.NO_BORDER);
PdfPCell cellMerchantTitle = rowCellStyle("Merchant", fontTitleSize);
cellMerchantTitle.setColspan(2);
table.addCell(cellSystemTitle);
table.completeRow();

关于java - 我将如何删除或使边框不可见我使用 table.completeRow() 完成的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39609049/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com