[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IComment.Text

Text Property

Text

Gets or sets the comment text.

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