[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.Comments

Comments Property

Comments

Gets the IComments collection that represents all the comments in the worksheet.

Use this property to access and enumerate cell comments in the current worksheet.

Declaration
IComments Comments { get; }
ReadOnly Property Comments As IComments
Examples
worksheet.Range["B2"].AddComment("Review this value");
IComments comments = worksheet.Comments;
IComment comment = comments[0];