1金币
最佳答案目前公开的只有api的这些
https://demo.grapecity.com.cn/spreadjs/help/api/GC.Spread.Sheets.Commands.html
unMergeCells是设计器的内置命令,只能在设计器中使用,并且没有公开的参数可使用。如果想要移除表单所有的合并,可以用下面的代码
sheet.getSpans().forEach((a)=>{sheet.removeSpan(a.row, a.col, GC.Spread.Sheets.SheetArea.viewport);})
| |
| |