[]
Adds a threaded comment to the current IRange.
ICommentThreaded AddCommentThreaded(string text, string author = null)
Function AddCommentThreaded(text As String, Optional author As String = Nothing) As ICommentThreaded
| Type | Name | Description |
|---|---|---|
| string | text | The text you want to add. |
| string | author | The name of the author. |
| Type | Description |
|---|---|
| ICommentThreaded | The newly added threaded comment. |
IRange range = worksheet.Range["A1"];
ICommentThreaded comment = range.AddCommentThreaded("Review this value.");
string text = comment.Text;