[]
An IAuthor object stores the user name associated with a threaded comment. You can obtain this interface from ICommentThreaded.getAuthor() and use it to read or update the author name.
ICommentThreaded comment = worksheet.getRange("A1").addCommentThreaded("Please review the total.", "Alice");
IAuthor author = comment.getAuthor();
author.setName("Alicia");
String name = author.getName();
This value identifies the author associated with the threaded comment.
ICommentThreaded comment = worksheet.getRange("A1").addCommentThreaded("Please review the total.", "Alice");
IAuthor author = comment.getAuthor();
String name = author.getName();
This value identifies the author associated with the threaded comment.
ICommentThreaded comment = worksheet.getRange("A1").addCommentThreaded("Please review the total.", "Alice");
IAuthor author = comment.getAuthor();
author.setName("Alicia");
name - The user name of the author.