[]
Gets or sets the user name of the author.
This value identifies the author associated with the threaded comment.
string Name { get; set; }
Property Name As String
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alice");
IAuthor author = comment.Author;
author.Name = "Alicia";
string name = author.Name;