Inheritance
System.Object
Syncfusion.EJ2.ControlBuilder
SpreadsheetThreadedCommentBuilder
Assembly: Syncfusion.EJ2.dll
public class SpreadsheetThreadedCommentBuilder : ControlBuilder
Constructors
Declaration
public SpreadsheetThreadedCommentBuilder()
Declaration
public SpreadsheetThreadedCommentBuilder(SpreadsheetThreadedComment model)
Parameters
Methods
Specifies the author of the comment.
If not set, the comment will not display an author name.
Declaration
public SpreadsheetThreadedCommentBuilder Author(string value)
Parameters
| Type |
Name |
Description |
| System.String |
value |
|
Returns
Indicates the date and time when the comment was created.
If not set, the comment will not show a timestamp.
Declaration
public SpreadsheetThreadedCommentBuilder CreatedTime(string value)
Parameters
| Type |
Name |
Description |
| System.String |
value |
|
Returns
Indicates whether the comment thread is marked as resolved.
If not set, the thread remains active and unresolved.
Set this to true when the discussion in the thread is complete and no further replies are expected.
Declaration
public SpreadsheetThreadedCommentBuilder IsResolved(bool value)
Parameters
| Type |
Name |
Description |
| System.Boolean |
value |
|
Returns
Declaration
public SpreadsheetThreadedCommentBuilder Replies(Action<CommentReplyBuilder> replies)
Parameters
Returns
Contains the collection of replies associated with the comment.
If not set, the comment has no replies.
Declaration
public SpreadsheetThreadedCommentBuilder Replies(List<CommentReply> value)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.List<CommentReply> |
value |
|
Returns
Defines the text content of the comment.
If not set, the comment will appear blank until content is added.
Declaration
public SpreadsheetThreadedCommentBuilder Text(string value)
Parameters
| Type |
Name |
Description |
| System.String |
value |
|
Returns