NPOI 1.2.4忽略了IComment.Visible值

时间:2012-02-03 11:25:18

标签: c# npoi

我正在尝试对单元格设置注释,但无论我是否设置IComment.Visible = false,它始终可见。在NPOI 1.2.3中,一切都按预期工作,但在NPOI 1.2.4中出现了这个问题。这是下面的代码片段。感谢。

   IComment cellComment = patriarch1.CreateCellComment(new HSSFClientAnchor(0, 0, 0, 0, 4, 2, 14, 5)); 
   HSSFRichTextString richText = new HSSFRichTextString("Some notes on the cell...");
   richText.ApplyFont(commentFont); 
   cellComment.String = richText; 
   cell.CellComment = cellComment;
   cellComment.Visible = false;   // ignored

1 个答案:

答案 0 :(得分:0)

这是NPOI 1.2.4中的一个错误。它已经在1.2.5中修复了