ThreadedComment

ThreadedComment class

Represents the threaded comment.

class ThreadedComment;

Properties

PropertyTypeDescription
rownumberReadonly. Gets the row index of the comment.
columnnumberReadonly. Gets the column index of the comment.
notesstringGets and sets the text of the comment.
authorThreadedCommentAuthorGets the author of the comment.
createdTimeDateGets and sets the created time of this threaded comment.

Methods

MethodDescription
getRow()@deprecated. Please use the ‘row’ property instead. Gets the row index of the comment.
getColumn()@deprecated. Please use the ‘column’ property instead. Gets the column index of the comment.
getNotes()@deprecated. Please use the ’notes’ property instead. Gets and sets the text of the comment.
setNotes(string)@deprecated. Please use the ’notes’ property instead. Gets and sets the text of the comment.
getAuthor()@deprecated. Please use the ‘author’ property instead. Gets the author of the comment.
setAuthor(ThreadedCommentAuthor)@deprecated. Please use the ‘author’ property instead. Gets the author of the comment.
getCreatedTime()@deprecated. Please use the ‘createdTime’ property instead. Gets and sets the created time of this threaded comment.
setCreatedTime(Date)@deprecated. Please use the ‘createdTime’ property instead. Gets and sets the created time of this threaded comment.
isNull()Checks whether the implementation object is null.

row

Readonly. Gets the row index of the comment.

row : number;

column

Readonly. Gets the column index of the comment.

column : number;

notes

Gets and sets the text of the comment.

notes : string;

author

Gets the author of the comment.

author : ThreadedCommentAuthor;

createdTime

Gets and sets the created time of this threaded comment.

createdTime : Date;

getRow()

@deprecated. Please use the ‘row’ property instead. Gets the row index of the comment.

getRow() : number;

getColumn()

@deprecated. Please use the ‘column’ property instead. Gets the column index of the comment.

getColumn() : number;

getNotes()

@deprecated. Please use the ’notes’ property instead. Gets and sets the text of the comment.

getNotes() : string;

setNotes(string)

@deprecated. Please use the ’notes’ property instead. Gets and sets the text of the comment.

setNotes(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

getAuthor()

@deprecated. Please use the ‘author’ property instead. Gets the author of the comment.

getAuthor() : ThreadedCommentAuthor;

Returns

ThreadedCommentAuthor

setAuthor(ThreadedCommentAuthor)

@deprecated. Please use the ‘author’ property instead. Gets the author of the comment.

setAuthor(value: ThreadedCommentAuthor) : void;

Parameters:

ParameterTypeDescription
valueThreadedCommentAuthorThe value to set.

getCreatedTime()

@deprecated. Please use the ‘createdTime’ property instead. Gets and sets the created time of this threaded comment.

getCreatedTime() : Date;

setCreatedTime(Date)

@deprecated. Please use the ‘createdTime’ property instead. Gets and sets the created time of this threaded comment.

setCreatedTime(value: Date) : void;

Parameters:

ParameterTypeDescription
valueDateThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;