contentPane与curLGP 对象主要区别是什么?
大佬求解
contentPane-https://help.fanruan.com/finereport/doc-view-619.html
curLGP-https://help.fanruan.com/finereport/doc-view-610.html
没什么大区别,硬要区分下,就是赋值的时候注意下
有curLGP的不能提交入库
contentPane.curLGP.setCellValue(列号,行号,值);//给单元格赋显示值,非实际值,不能提交入库 contentPane.curLGP.setCellValue(单元格,null,值);//给单元格赋显示值,非实际值,不能提交入库 contentPane.setCellValue(列号,行号,值);//给单元格赋实际值,可以提交入库 contentPane.setCellValue(单元格,null,值);//给单元格赋实际值,可以提交入库