[]
Gets the author object of the threaded comment.
IAuthor Author { get; }
ReadOnly Property Author As IAuthor
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Review this value", "Alex");
IAuthor author = comment.Author;
string name = author.Name;