跳到主要内容

SetText

Sets the comment text.

Syntax

expression.SetText(text);

expression - A variable that represents a ApiComment class.

Parameters

NameRequired/OptionalData typeDefaultDescription
textRequiredstringNew text for comment.

Returns

This method doesn't return any data.

Example

This example sets the comment text.

let worksheet = Api.GetActiveSheet();
worksheet.GetRange("A1").SetValue("1");
let range = worksheet.GetRange("A1");
let comment = range.AddComment("This is just a number.");
comment.SetText("New comment text");