Skip to main content

Метод Comment.isResolved

Метод возвращает значение true, если комментарий принят.

Пример​


Comments comments = document.getRange().getComments();
CommentsEnumerator commentsEnumerator = comments.GetEnumerator();

foreach (var comment in commentsEnumerator)
{
Console.WriteLine(comment.isResolved());
}