[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICommentThreaded.Text

Text Property

Text

Gets or sets the threaded comment's text.

Returns the text content of this threaded comment, whether it is a top-level comment or a reply.

Declaration
string Text { get; set; }
Property Text As String
Examples
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alex");
comment.Text = "The total has been reviewed.";
string text = comment.Text;