[]
Represents the author of a threaded comment.
An IAuthor object stores the user name associated with a threaded comment.
You can obtain this interface from Author and use it to read
or update the author name.
public interface IAuthor
Public Interface IAuthor
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alice");
IAuthor author = comment.Author;
author.Name = "Alicia";
string name = author.Name;
| Name | Description |
|---|---|
| Name | Gets or sets the user name of the author. This value identifies the author associated with the threaded comment. |