Excel.Interfaces.CommentCollectionLoadOptions interface
Represents a collection of comment objects that are part of the workbook.
Remarks
Properties
$all | Specifying |
author |
For EACH ITEM in the collection: Gets the email of the comment's author. |
author |
For EACH ITEM in the collection: Gets the name of the comment's author. |
content | For EACH ITEM in the collection: The comment's content. The string is plain text. |
creation |
For EACH ITEM in the collection: Gets the creation time of the comment. Returns |
id | For EACH ITEM in the collection: Specifies the comment identifier. |
mentions | For EACH ITEM in the collection: Gets the entities (e.g., people) that are mentioned in comments. |
resolved | For EACH ITEM in the collection: The comment thread status. A value of |
rich |
For EACH ITEM in the collection: Gets the rich comment content (e.g., mentions in comments). This string is not meant to be displayed to end-users. Your add-in should only use this to parse rich comment content. |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
authorEmail
For EACH ITEM in the collection: Gets the email of the comment's author.
authorEmail?: boolean;
Property Value
boolean
Remarks
authorName
For EACH ITEM in the collection: Gets the name of the comment's author.
authorName?: boolean;
Property Value
boolean
Remarks
content
For EACH ITEM in the collection: The comment's content. The string is plain text.
content?: boolean;
Property Value
boolean
Remarks
creationDate
For EACH ITEM in the collection: Gets the creation time of the comment. Returns null
if the comment was converted from a note, since the comment does not have a creation date.
creationDate?: boolean;
Property Value
boolean
Remarks
id
For EACH ITEM in the collection: Specifies the comment identifier.
id?: boolean;
Property Value
boolean
Remarks
mentions
For EACH ITEM in the collection: Gets the entities (e.g., people) that are mentioned in comments.
mentions?: boolean;
Property Value
boolean
Remarks
resolved
For EACH ITEM in the collection: The comment thread status. A value of true
means that the comment thread is resolved.
resolved?: boolean;
Property Value
boolean
Remarks
richContent
For EACH ITEM in the collection: Gets the rich comment content (e.g., mentions in comments). This string is not meant to be displayed to end-users. Your add-in should only use this to parse rich comment content.
richContent?: boolean;
Property Value
boolean
Remarks
Office Add-ins