Class SpreadsheetThreadedComment
Inheritance
Namespace: Syncfusion.EJ2.Spreadsheet
Assembly: Syncfusion.EJ2.dll
Syntax
public class SpreadsheetThreadedComment : EJTagHelper
Constructors
SpreadsheetThreadedComment()
Declaration
public SpreadsheetThreadedComment()
Properties
Author
Specifies the author of the comment. If not set, the comment will not display an author name.
Declaration
public string Author { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The default value is "" |
ContentTemplate
To get or set value for ContentTemplate.
Declaration
public MvcTemplate<object> ContentTemplate { get; set; }
Property Value
| Type |
|---|
| Syncfusion.EJ2.MvcTemplate<System.Object> |
CreatedTime
Indicates the date and time when the comment was created. If not set, the comment will not show a timestamp.
Declaration
public string CreatedTime { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The default value is null |
IsResolved
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 bool IsResolved { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | The default value is false |
Replies
Contains the collection of replies associated with the comment. If not set, the comment has no replies.
Declaration
public List<CommentReply> Replies { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<CommentReply> | The default value is null |
Text
Defines the text content of the comment. If not set, the comment will appear blank until content is added.
Declaration
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The default value is "" |