gpt4 book ai didi

EPPlus - 如何从单元格中删除评论?

转载 作者:行者123 更新时间:2023-12-03 09:20:58 27 4
gpt4 key购买 nike

在 EPPlus 中,我可以使用 workSheet.Cells[x, y].AddComment() 将注释添加到工作表中的单元格

但是如何从给定单元格中删除注释 - 没有 workSheet.Cells[i, j].RemoveComment() - 我需要保留任何其他注释

预先感谢您的任何建议

最佳答案

有人会认为事情就这么简单:)。

看看这个:

[TestMethod]
public void Comment_Test()
{
var existingFile = new FileInfo(@"c:\temp\temp.xlsx");
if (existingFile.Exists)
existingFile.Delete();

using (var package2 = new ExcelPackage(existingFile))
{
var ws = package2.Workbook.Worksheets.Add("Sheet1");
ws.Cells[1, 1].AddComment("Comment Test 1", "Me");
ws.Cells[1, 2].AddComment("Comment Test 2", "Me");
ws.Cells[1, 3].AddComment("Comment Test 3", "Me");

//Alternate way to add a comment
ws.Comments.Add(ws.Cells[1, 4], "Comment Test 4", "Me");

//Remove middle comment
ws.Comments.Remove(ws.Cells[1,2].Comment);

package2.Save();
}
}

关于EPPlus - 如何从单元格中删除评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31072181/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com