[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBuiltInDocumentPropertyCollection.Comments

Comments Property

Comments

Gets or sets the document comments.

Declaration
string Comments { get; set; }
Property Comments As String
Property Value
Type Description
string

The document comments, or null if no comments have been set.

Examples
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
properties.Comments = "Quarterly sales report for internal review.";
string comments = properties.Comments;