[]
Returns an instance of IComment which may be used to get and set Comment properties of the cells.
IComment Comment { get; }
ReadOnly Property Comment As IComment
IRange range = worksheet.Range["A1"];
range.AddComment("Review this value.");
IComment comment = range.Comment;
string text = comment.Text;