ThreadedComment
ThreadedComment class
Represents the threaded comment.
class ThreadedComment;
Properties
Property | Type | Description |
---|---|---|
row | number | Readonly. Gets the row index of the comment. |
column | number | Readonly. Gets the column index of the comment. |
notes | string | Gets and sets the text of the comment. |
author | ThreadedCommentAuthor | Gets the author of the comment. |
createdTime | Date | Gets and sets the created time of this threaded comment. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getAuthor()
@deprecated. Please use the ‘author’ property instead. Gets the author of the comment.
getAuthor() : ThreadedCommentAuthor;
Returns
setAuthor(ThreadedCommentAuthor)
@deprecated. Please use the ‘author’ property instead. Gets the author of the comment.
setAuthor(value: ThreadedCommentAuthor) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | ThreadedCommentAuthor | The 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:
Parameter | Type | Description |
---|---|---|
value | Date | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;