[]
Gets or sets the document comments.
string Comments { get; set; }
Property Comments As String
| Type | Description |
|---|---|
| string | The document comments, or null if no comments have been set. |
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
properties.Comments = "Quarterly sales report for internal review.";
string comments = properties.Comments;