SetText(sText) → { ApiComment }
Отмечает комментарий как решенный.
Параметры:
Название | Тип | Описание |
sText | строковый | Текст комментария. |
Возвращает:
- Тип ApiComment
Пример
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is just a sample text");
Api.AddComment(oParagraph, "comment", "John Smith");
var aComments = oDocument.GetAllComments();
aComments[0].SetText("new comment");
builder.SaveFile("docx", "SetText.docx");
builder.CloseFile();