Существует ли API скриптов Google Apps для определения положения курсора.Я могу прочитать строку с помощью метода getcursor (), но я хочу знать положение курсора.Если кто-нибудь знает об этом случае, пожалуйста, помогите мне.
Это просто сделать:
// 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)); }