[]
Gets or sets the comment text.
string Text { get; set; }
Property Text As String
worksheet.Range["D5"].Value = "Review";
IComment comment = worksheet.Range["D5"].AddComment("Check this value.");
comment.Text = "Reviewed and approved.";
string text = comment.Text;