我在用精英图书馆。
newfile, _ := excelize.OpenFile("filename.xlsx")
println(newfile.GetComments())
//map[Sheet1:[{Author 0 A2 comment1}]]
_ = newfile.InsertRow("Sheet1", 1)
println(newfile.GetComments())
//map[Sheet1:[{Author 0 A2 comment1}]]
我的评论comment1
的坐标没有变化,怎么解决这个问题?
1条答案
按热度按时间mm9b1k5b1#
注解已绑定到单元格。当您插入新行时,上面的调用仍包含注解。如果您希望在第二行中添加注解,则必须设置注解explicit。