我在使用 EPPlus 处理 Excel 文档中的注释时遇到了一些问题。我可以添加评论并删除它们,但有时它并不成功。
我正在使用注释来显示处理 Excel 文件的结果中的验证消息,当重新处理此文件时,我想在再次运行验证之前清除所有现有注释。
我目前清除评论的方法是这样的:
_sheet.Cells.Style.Fill.PatternType = ExcelFillStyle.None;
while (_sheet.Comments.Count > 0)
{
// Note: not using _sheet.Comments.RemoveAt(0) since this can throw [Exception: Key does not exist] OfficeOpenXml.RangeCollection.Delete(UInt64 key)
_sheet.Comments.RemoveAt(_sheet.Comments.Count - 1);
}
这似乎可以很好地清除它们。但是当我尝试添加如下评论时:
const string author = "...";
cell.Style.Fill.PatternType = ExcelFillStyle.Solid;
cell.Style.Fill.BackgroundColor.SetColor(Color.LemonChiffon);
if (cell.Comment == null)
{
cell.AddComment(message, author);
}
else
{
cell.Comment.Text = message;
cell.Comment.Author = author;
}
其中单元格是特定单元格的 ExcelRange 实例,我得到以下堆栈跟踪:
System.NullReferenceException : Object reference not set to an instance of an object.
at OfficeOpenXml.Drawing.Vml.ExcelVmlDrawingCommentCollection.AddDrawing(ExcelRangeBase cell)
at OfficeOpenXml.Drawing.Vml.ExcelVmlDrawingCommentCollection.Add(ExcelRangeBase cell)
at OfficeOpenXml.ExcelComment..ctor(XmlNamespaceManager ns, XmlNode commentTopNode, ExcelRangeBase cell)
at OfficeOpenXml.ExcelCommentCollection.Add(ExcelRangeBase cell, String Text, String author)
at OfficeOpenXml.ExcelRangeBase.Set_Comment(Object value, Int32 row, Int32 col)
at OfficeOpenXml.ExcelRangeBase.SetSingle(_setValue valueMethod, Object value)
at OfficeOpenXml.ExcelRangeBase.AddComment(String Text, String Author)
谁能帮我这个?我究竟做错了什么?
谢谢,
詹姆士