Excel.Interfaces.CommentReplyLoadOptions interface
Represents a comment reply in the workbook.
Remarks
Properties
$all | Specifying |
author |
Gets the email of the comment reply's author. |
author |
Gets the name of the comment reply's author. |
content | The comment reply's content. The string is plain text. |
creation |
Gets the creation time of the comment reply. |
id | Specifies the comment reply identifier. |
mentions | The entities (e.g., people) that are mentioned in comments. |
resolved | The comment reply status. A value of |
rich |
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
Gets the email of the comment reply's author.
authorEmail?: boolean;
Property Value
boolean
Remarks
authorName
Gets the name of the comment reply's author.
authorName?: boolean;
Property Value
boolean
Remarks
content
The comment reply's content. The string is plain text.
content?: boolean;
Property Value
boolean
Remarks
creationDate
Gets the creation time of the comment reply.
creationDate?: boolean;
Property Value
boolean
Remarks
id
Specifies the comment reply identifier.
id?: boolean;
Property Value
boolean
Remarks
mentions
The entities (e.g., people) that are mentioned in comments.
mentions?: boolean;
Property Value
boolean
Remarks
resolved
The comment reply status. A value of true
means the reply is in the resolved state.
resolved?: boolean;
Property Value
boolean
Remarks
richContent
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