如何在Google Apps脚本中获取光标位置?

时间:2018-10-24 10:43:39

标签: google-apps-script google-docs

是否有任何Google Apps Script API可以获取光标位置。我可以使用getcursor()方法读取行,但是我想知道光标的位置。如果有人知道这种情况,请帮助我。

1 个答案:

答案 0 :(得分:0)

很简单:

// get the cursor position stored by onCursorMove()
var properties = PropertiesService.getScriptProperties();
var position = properties.getProperty("position");
if (position !== null){
    // set cursor to last-stored position
    doc.setCursor(doc.newPosition(text, position));
  }