如何过滤Google正文文档中的文本以应用拼写建议?

时间:2019-02-08 08:36:02

标签: javascript google-docs-api

我想修改文档以使其在以下示例中似乎是错误的情况下始终应用建议的文本。

introducir la descripción de la imagen aquí

目前,我执行了以下操作:

function myFunction() {
  var doc = DocumentApp.getActiveDocument();
  var body = doc.getBody();
  var text = body.getText();
  for(var i = 0; i < words.length; i++){
    var words = text[i].editAsText();
    // here I have to replace the words if it is false et if there is a suggestion
    }
  }
  doc.saveAndClose();
}

0 个答案:

没有答案