Excel.Interfaces.CommentReplyData interface

Warning

This API is now deprecated.

An interface describing the data returned by calling commentReply.toJSON().

Properties

authorEmail

Gets the email of the comment reply's author.

authorName

Gets the name of the comment reply's author.

content

The comment reply's content. The string is plain text.

contentType

The content type of the reply.

creationDate

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 true means the reply is in the resolved state.

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.

Property Details

authorEmail

Warning

This API is now deprecated.

Gets the email of the comment reply's author.

authorEmail?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.10 ]

authorName

Warning

This API is now deprecated.

Gets the name of the comment reply's author.

authorName?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.10 ]

content

Warning

This API is now deprecated.

The comment reply's content. The string is plain text.

content?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.10 ]

contentType

Warning

This API is now deprecated.

The content type of the reply.

contentType?: Excel.ContentType | "Plain" | "Mention";

Property Value

Excel.ContentType | "Plain" | "Mention"

Remarks

[ API set: ExcelApi 1.12 ]

creationDate

Warning

This API is now deprecated.

Gets the creation time of the comment reply.

creationDate?: Date;

Property Value

Date

Remarks

[ API set: ExcelApi 1.10 ]

id

Warning

This API is now deprecated.

Specifies the comment reply identifier.

id?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.10 ]

mentions

Warning

This API is now deprecated.

The entities (e.g., people) that are mentioned in comments.

mentions?: Excel.CommentMention[];

Property Value

Remarks

[ API set: ExcelApi 1.11 ]

resolved

Warning

This API is now deprecated.

The comment reply status. A value of true means the reply is in the resolved state.

resolved?: boolean;

Property Value

boolean

Remarks

[ API set: ExcelApi 1.11 ]

richContent

Warning

This API is now deprecated.

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?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.11 ]