AddComment

AddComment(sText, sAuthor) → { ApiComment | null }

Adds a comment to the current range.

Parameters:

Name Type Description
sText string

The comment text.

sAuthor string

The author's name (optional).

Returns:

Type
ApiComment | null

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oRange = oWorksheet.GetRange("A1");
oRange.SetValue("1");
oRange.AddComment("This is just a number.");
oWorksheet.GetRange("A3").SetValue("The comment was added to the cell A1.");
oWorksheet.GetRange("A4").SetValue("Comment: " + oRange.GetComment().GetText());
builder.SaveFile("xlsx", "AddComment.xlsx");
builder.CloseFile();

Resulting document