[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IAuthor.Name

Name Property

Name

Gets or sets the user name of the author.

This value identifies the author associated with the threaded comment.

Declaration
string Name { get; set; }
Property Name As String
Examples
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alice");
IAuthor author = comment.Author;
author.Name = "Alicia";
string name = author.Name;