Apache POI 的单元分组:有没有办法在顶部而不是底部获得加号?
Cell grouping for Apache POI: is there a way to get the plus at the top instead of the bottom?
我正在使用 Apache POI,我想将一些单元格组合在一起。但是,扩展图标显示 1 cell below instead of 1 cell above。有什么办法可以解决这个问题吗?
在excel中,我通常会点击"outline"高级选项并取消选中"Summary rows below detail"选项来解决这个问题。任何帮助将不胜感激。
您可以在 Sheet/XSSFSheet
上使用以下方法
sheet.setRowSumsBelow(false);
我正在使用 Apache POI,我想将一些单元格组合在一起。但是,扩展图标显示 1 cell below instead of 1 cell above。有什么办法可以解决这个问题吗?
在excel中,我通常会点击"outline"高级选项并取消选中"Summary rows below detail"选项来解决这个问题。任何帮助将不胜感激。
您可以在 Sheet/XSSFSheet
上使用以下方法sheet.setRowSumsBelow(false);