AddComment
function AddComment(sText: string = null, sAuthor: string = null): ApiComment | "null"
Description
Adds a comment to the current range.
Parameters
- sText
string
null The comment text.
- sAuthor
string
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());