以编程方式更改评论框的大小

Programmatically change size of comment box

我可以使用 Range.AddComment 方法以编程方式向 C# 中的 Excel 单元格添加注释:

range.Cells[1, 1].AddComment("Hello World!");

我的问题是我需要添加的一些评论很长。在我的测试过程中,无论评论有多长,评论框似乎都保持默认大小。这意味着用户在最初单击该单元格时无法看到所有评论。

有没有一种方法可以让我更好地控制评论的显示方式,从而避免这个问题?

试试这个:

        Range cell = (Range)sheet.Cells[1, 1];
        Comment comment = cell.AddComment("blah");
        comment.Shape.TextFrame.AutoSize = true;

编辑:更长的文本和不同的方法:

        string text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit,\n sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n"+
            "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\n nisi ut aliquip ex ea commodo consequat."+
            "Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\n"+
            "Excepteur sint occaecat cupidatat non proident, sunt in \nculpa qui officia deserunt mollit anim id est laborum";

        Range cell = (Range)sheet.Cells[1, 1];
        Comment comment = cell.AddComment();
        comment.Shape.TextFrame.AutoSize = true;
        comment.Text(text);

我不得不改用自动调整来解决它。

worksheet.Cells[1, i + 1].AddComment("Lorem ipsum dolor sit amet\nSed do eiusmod", "");
worksheet.Cells[1, i + 1].Comment.AutoFit = true;