ThreadedComment
Contents
[
Hide
]ThreadedComment class
Represents the threaded comment.
class ThreadedComment;
Methods
Method | Description |
---|---|
getRow() | Gets the row index of the comment. |
getColumn() | Gets the column index of the comment. |
getNotes() | Gets and sets the text of the comment. |
setNotes(string) | Gets and sets the text of the comment. |
getAuthor() | Gets the author of the comment. |
setAuthor(ThreadedCommentAuthor) | Gets the author of the comment. |
getCreatedTime() | Gets and sets the created time of this threaded comment. |
setCreatedTime(Date) | Gets and sets the created time of this threaded comment. |
isNull() | Checks whether the implementation object is null. |
getRow()
Gets the row index of the comment.
getRow() : number;
getColumn()
Gets the column index of the comment.
getColumn() : number;
getNotes()
Gets and sets the text of the comment.
getNotes() : string;
setNotes(string)
Gets and sets the text of the comment.
setNotes(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getAuthor()
Gets the author of the comment.
getAuthor() : ThreadedCommentAuthor;
Returns
setAuthor(ThreadedCommentAuthor)
Gets the author of the comment.
setAuthor(value: ThreadedCommentAuthor) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | ThreadedCommentAuthor | The value to set. |
getCreatedTime()
Gets and sets the created time of this threaded comment.
getCreatedTime() : Date;
setCreatedTime(Date)
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;