如何用go更改excel文件中的注解

9udxz4iz  于 2023-03-10  发布在  Go
关注(0)|答案(1)|浏览(131)

我在用精英图书馆。

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的坐标没有变化,怎么解决这个问题?

mm9b1k5b

mm9b1k5b1#

注解已绑定到单元格。当您插入新行时,上面的调用仍包含注解。如果您希望在第二行中添加注解,则必须设置注解explicit。

相关问题