[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IAuthor

IAuthor Interface

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.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public interface IAuthor
Public Interface IAuthor
Examples
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alice");
IAuthor author = comment.Author;
author.Name = "Alicia";
string name = author.Name;

Properties

Name Description
Name

Gets or sets the user name of the author.

This value identifies the author associated with the threaded comment.