AddComment

function AddComment(sText: string = null, sAuthor: string = null): ApiComment | "null"

Description

Adds a comment to the current range.

Parameters

sTextstringdefault: null

The comment text.

sAuthorstringdefault: null

The author's name (optional).

Returns

ApiComment | "null"

Try It

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());

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).