[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.CommentThreaded

CommentThreaded Property

CommentThreaded

Returns an instance of ICommentThreaded which may be used to get and set ICommentThreaded properties of the cells.

Declaration
ICommentThreaded CommentThreaded { get; }
ReadOnly Property CommentThreaded As ICommentThreaded
Examples
IRange range = worksheet.Range["A1"];
range.AddCommentThreaded("Review this value.", "Alex");
ICommentThreaded comment = range.CommentThreaded;
string text = comment.Text;