[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Comment

Comment Property

Comment

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

Declaration
IComment Comment { get; }
ReadOnly Property Comment As IComment
Examples
IRange range = worksheet.Range["A1"];
range.AddComment("Review this value.");
IComment comment = range.Comment;
string text = comment.Text;